-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
57 lines (52 loc) · 1005 Bytes
/
docker-compose-dev.yml
File metadata and controls
57 lines (52 loc) · 1005 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
48
49
50
51
52
53
54
55
56
57
version: "3.9"
services:
sync-middleware:
container_name: tc_middleware
image: localhost/tcweb-middleware:dev
build:
context: middleware
env_file:
- .env
environment:
RUST_LOG: debug
volumes:
- middlewaredata:/app/data:z
ports:
- "3001:3001"
networks:
- tc_network
tcweb-backend:
container_name: tc_backend
image: localhost/tcweb-backend:dev
build:
context: backend
env_file:
- .env
volumes:
- backenddata:/app/data:z
- backendconfig:/app/config:z
ports:
- "8090:8080"
depends_on:
sync-middleware
networks:
- tc_network
tcweb-frontend:
container_name: tc_frontend
image: localhost/tcweb-frontend:dev
build:
context: frontend
env_file:
- .env
ports:
- "4200:80"
networks:
- tc_network
volumes:
syncdata:
middlewaredata:
backenddata:
backendconfig:
networks:
tc_network:
driver: bridge