-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
68 lines (62 loc) · 1.45 KB
/
docker-compose.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
version: '3.7'
services:
studio-mongo:
container_name: studio-mongo
image: mongo:latest
volumes:
- ./storages/mongo-database/:/data/db
networks:
- internal
studio-api:
container_name: studio-api
image : linto-studio/studio-api
build:
context: ./studio-api
dockerfile: Dockerfile
env_file: ./studio-api/.dockerenv
volumes:
- /etc/localtime:/etc/localtime:ro
- ./storages/studio-api/:/usr/src/app/conversation-manager/storages/
command:
- --run-cmd=node app.js
ports:
- "8001:80"
networks:
- internal
studio-websocket:
container_name: studio-websocket
image : linto-studio/studio-websocket
build:
context: ./studio-websocket
dockerfile: Dockerfile
env_file: ./studio-websocket/.dockerenv
ports:
- "8002:80"
networks:
- internal
studio-frontend:
container_name: studio-frontend
image : linto-studio/studio-frontend
build:
context: ./studio-frontend
dockerfile: Dockerfile
env_file: ./studio-frontend/.dockerenv
command:
- --build
ports:
- "8003:80"
networks:
- internal
studio-dashboard:
container_name: studio-dashboard
image : linto-studio/studio-dashboard
build:
context: ./studio-dashboard
dockerfile: Dockerfile
env_file: ./studio-dashboard/.dockerenv
ports:
- "8004:80"
networks:
- internal
networks:
internal: