namelessai commited on
Commit
f01b4fe
·
verified ·
1 Parent(s): 74c0b49

Create docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +14 -0
docker-compose.yml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3.8'
2
+
3
+ services:
4
+ rar-to-zip:
5
+ build: .
6
+ container_name: rar-zip-converter
7
+ ports:
8
+ - "7860:7860"
9
+ volumes:
10
+ - ./temp:/tmp/gradio_temp
11
+ restart: unless-stopped
12
+ environment:
13
+ - GRADIO_SERVER_NAME=0.0.0.0
14
+ - GRADIO_SERVER_PORT=7860