-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.dev.yml
More file actions
107 lines (99 loc) · 1.92 KB
/
compose.dev.yml
File metadata and controls
107 lines (99 loc) · 1.92 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
services:
mongo:
image: mongo:4.4.18-rc0-focal
env_file:
- ./mongo/.env
restart: always
ports:
- 27017:27017
volumes:
- data:/data/db
- ./mongo/mongo-init.sh:/docker-entrypoint-initdb.d/mongo-init.sh:Z
mongo-express:
image: mongo-express:1.0.2-20-alpine3.19
env_file:
- ./mongo-express/.env
restart: always
ports:
- 8081:8081
depends_on:
- mongo
browser:
build:
context: ./browser
restart: always
ports:
- 3030:3000
renderer:
build: ./renderer
env_file:
- ./renderer/.env
environment:
PYTHONDONTWRITEBYTECODE: 1
restart: always
ports:
- 8001:8001
command: pipenv run dev
volumes:
- ./renderer/app/:/app/app:Z
depends_on:
- mongo
generator:
build: ./generator
env_file:
- ./generator/.env
environment:
PYTHONDONTWRITEBYTECODE: 1
restart: always
ports:
- 8002:8000
command: pipenv run dev --host 0.0.0.0
volumes:
- ./generator/app/:/app/app:Z
depends_on:
- browser
- renderer
resume_api:
build: ./resume_api
env_file:
- ./resume_api/.env
environment:
PYTHONDONTWRITEBYTECODE: 1
restart: always
ports:
- 8000:8000
command: pipenv run dev --host 0.0.0.0
volumes:
- ./resume_api/app:/app/app:Z
depends_on:
- mongo
editor:
build:
context: ./editor
dockerfile: dev.dockerfile
env_file:
- ./editor/.env
restart: always
ports:
- 3000:3000
volumes:
- ./editor:/app:Z
- /app/node_modules
depends_on:
- resume_api
- generator
- renderer
domain:
build:
context: ./domain
dockerfile: dev.dockerfile
env_file:
- ./domain/.env
restart: always
ports:
- 80:3000
volumes:
- ./domain:/app:Z
- /app/node_modules
volumes:
data: