-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
70 lines (68 loc) · 1.89 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
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
version: "3.7"
services:
dev-backend:
build: ./dev/backend
working_dir: /backend
container_name: dev-backend
command: python3 dev-entry.py
volumes:
- ./dev/backend/:/backend
depends_on:
- unknown_mongo
env_file:
- ./dev/.env
dev-frontend:
build: ./dev/frontend
container_name: dev-frontend
working_dir: /frontend
command: pnpm docker-dev
volumes:
- ./dev/frontend/.svelte-kit/:/frontend/.svelte-kit/
- ./dev/frontend/patches/:/frontend/patches/
- ./dev/frontend/scripts/:/frontend/scripts/
- ./dev/frontend/src/:/frontend/src/
- ./dev/frontend/static/:/frontend/static/
- ./dev/frontend/package.json:/frontend/package.json
- ./dev/frontend/postcss.config.js:/frontend/postcss.config.js
- ./dev/frontend/svelte.config.js:/frontend/svelte.config.js
- ./dev/frontend/tailwind.config.js:/frontend/tailwind.config.js
- ./dev/frontend/vite.config.ts:/frontend/vite.config.ts
env_file:
- ./dev/.env
environment:
- isDocker=true
unknown_mongo:
image: mongo
container_name: unknown_mongo
restart: unless-stopped
env_file:
- ./dev/.env
volumes:
- "./dev/data:/data/db"
mock-interview-saver:
build: ./mock-interview-saver/
container_name: mock-interview-saver
command: python /app/start.py
restart: always
ports:
- 3000:5000
env_file:
- ./mock-interview-saver/.env
volumes:
- ./mock-interview-saver/root/:/app/root/
- ./mock-interview-saver/start.py:/app/start.py
- ./mock-interview-saver/store/:/app/store/
nginx:
image: nginx
ports:
- 80:80
- 443:443
volumes:
- type: bind
source: ./nginx/nginx.conf
target: /etc/nginx/conf.d/default.conf
read_only: true
depends_on:
- mock-interview-saver
- dev-frontend
- dev-backend