capradeepgujaran commited on
Commit
4e3eedb
·
verified ·
1 Parent(s): 9e704a3

Create docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +13 -0
docker-compose.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3.8'
2
+
3
+ services:
4
+ gradio-app:
5
+ build: .
6
+ ports:
7
+ - "7860:7860"
8
+ environment:
9
+ - GRADIO_SERVER_NAME=0.0.0.0
10
+ - GRADIO_SERVER_PORT=7860
11
+ env_file:
12
+ - .env
13
+ restart: unless-stopped