goingyt commited on
Commit
4ce3526
Β·
verified Β·
1 Parent(s): 16c4b05

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'
2
+
3
+ services:
4
+ web:
5
+ build: .
6
+ ports:
7
+ - "7860:7860"
8
+ depends_on:
9
+ - ubuntu
10
+
11
+ ubuntu:
12
+ image: ubuntu:20.04
13
+ command: tail -f /dev/null
14
+ tty: true