-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (31 loc) · 862 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (31 loc) · 862 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
services:
tasktr_be:
container_name: tasktr_be
hostname: tasktr_be
build:
context: ./
dockerfile: ./apps/be/Dockerfile
image: lehuygiang28/tasktr_be:${COMPOSE_TAG:-latest}
env_file:
- ./apps/be/.env
ports:
- 8000:${API_PORT:-8000}
networks:
- tasktr_net
restart: unless-stopped
tasktr_fe:
container_name: tasktr_fe
hostname: tasktr_fe
build:
context: ./
dockerfile: ./apps/fe/Dockerfile
image: lehuygiang28/tasktr_fe:${COMPOSE_TAG:-latest}
env_file:
- ./apps/fe/.env
ports:
- 3000:${FE_PORT:-3000}
networks:
- tasktr_net
restart: unless-stopped
networks:
tasktr_net: