-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (44 loc) · 1 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
version: "3"
services:
collabon:
container_name: collabon
build:
context: ./collabon
volumes:
- ./collabon:/usr/app
- /usr/app/node_module
ports:
- '3000:3000'
frontend:
container_name: frontend
build:
context: ./frontend
logging:
driver: none
links:
- collabon
- helper-service
ports:
- '80:80'
environment:
- BACKEND_URL=http://localhost:3000/api
redis:
image: "redis:alpine"
container_name: cache
logging:
driver: none
ports:
- 6379:6379
helper-service:
container_name: helper-service
build:
context: ./helper-service
depends_on:
- redis
links:
- redis
volumes:
- ./helper-service:/usr/app
- /usr/app/node_module
ports:
- 4000:4000