-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
61 lines (56 loc) · 1.79 KB
/
docker-compose.yaml
File metadata and controls
61 lines (56 loc) · 1.79 KB
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
version: '3'
services:
compodoc-techcell:
container_name: compodoc-techcell
hostname: compodoc-techcell
build:
context: ./
dockerfile: ./containers/compodoc-techcell/Dockerfile
image: lehuygiang28/compodoc-techcell:${COMPOSE_TAG:-latest}
ports:
- 9001:${COMPODOC_PORT:-9001}
networks:
- the_next_techcell_backend
restart: unless-stopped
api:
container_name: api
hostname: api
build:
context: .
dockerfile: ./apps/server/Dockerfile
image: lehuygiang28/the_next_tech_cell:${COMPOSE_TAG:-latest}
ports:
- ${API_PORT:-8000}:${API_PORT:-8000}
env_file:
- .env
volumes:
- the_next_tech_cell_data:/app
- ./firebase.json:/usr/src/app/firebase.json
networks:
- the_next_techcell_backend
restart: unless-stopped
communication:
container_name: communication
hostname: communication
build:
context: .
dockerfile: ./apps/communication/Dockerfile
image: lehuygiang28/the_next_tech_cell_communication:${COMPOSE_TAG:-latest}
ports:
- ${COMMUNICATION_PORT:-8001}:${COMMUNICATION_PORT:-8001}
env_file:
- .env
volumes:
- the_next_tech_cell_communication_data:/app
- ./firebase.json:/usr/src/app/firebase.json
networks:
- the_next_techcell_backend
restart: unless-stopped
networks:
the_next_techcell_backend:
driver: bridge
volumes:
the_next_tech_cell_data:
driver: local
the_next_tech_cell_communication_data:
driver: local