-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (43 loc) · 802 Bytes
/
docker-compose.yml
File metadata and controls
47 lines (43 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
version: '3'
services:
webdjango:
build:
context: webdjango/
restart: always
command: ["gunicorn", "webdjango.wsgi", "-b", "0.0.0.0:8000"]
ports:
- "8000:8000"
volumes:
- ./webdjango:/webdjango
webflask:
build:
context: webflask/
restart: always
command: ["python", "webflask.py"]
ports:
- "8001:8001"
volumes:
- ./webflask:/webflask
webgo:
build:
context: webgo/
restart: always
ports:
- "8002:8002"
volumes:
- ./webgo:/webgo
webnode:
build:
context: webnode/
restart: always
command: ["npm", "start"]
ports:
- "8003:8003"
volumes:
- ./webnode:/webnode
nginx:
build:
context: nginx/
restart: always
ports:
- "80:80"