-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdocker-compose.yml
44 lines (40 loc) · 916 Bytes
/
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
version: "3"
services:
mongodb:
hostname: mongodb
container_name: mongodb
image: bitnami/mongodb:latest
networks:
- stack
frontend:
build:
context: ./react/apps/frontend
target: dev
volumes:
- ./react/apps/frontend:/app/:cached # Mount code to allow for hot reloading
- ./react/apps/frontend/node_modules:/app/node_modules:cached
stdin_open: true
ports:
- 3000:3000
networks:
- stack
backend:
build:
context: ./python/apps/backend
target: dev
volumes:
- ./python/apps/backend:/app/:cached # Mount code to allow for hot reloading
environment:
MONGODB_HOST: mongodb
GOOGLE_CLIENT_ID:
GOOGLE_CLIENT_SECRET:
AZURE_CLIENT_ID:
AZURE_CLIENT_SECRET:
AZURE_TENANT_ID:
JWT_SECRET_KEY:
ports:
- 8000:8000
networks:
- stack
networks:
stack: {}