generated from ExamProCo/aws-bootcamp-cruddur-2023
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose-prod.yml
77 lines (70 loc) · 2.14 KB
/
docker-compose-prod.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
71
72
73
74
75
76
77
version: "3.8"
services:
backend-flask:
container_name: cruddur-backend-multi
environment:
FRONTEND_URL: "https://3000-${GITPOD_WORKSPACE_ID}.${GITPOD_WORKSPACE_CLUSTER_HOST}"
BACKEND_URL: "https://4567-${GITPOD_WORKSPACE_ID}.${GITPOD_WORKSPACE_CLUSTER_HOST}"
build:
context: ./backend-flask
dockerfile: Dockerfile.prod
image: ${DOCKER_USERNAME}/cruddur-backend-multi:latest
ports:
- "4567:4567"
volumes:
- ./backend-flask:/backend-flask
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:4567/api/activities/home"]
interval: 1m30s
timeout: 30s
retries: 5
start_period: 30s
frontend-react-js:
container_name: cruddur-frontend-multi
environment:
REACT_APP_BACKEND_URL: "https://4567-${GITPOD_WORKSPACE_ID}.${GITPOD_WORKSPACE_CLUSTER_HOST}"
build:
context: ./frontend-react-js
dockerfile: Dockerfile.prod
image: ${DOCKER_USERNAME}/cruddur-frontend-multi:latest
ports:
- "3000:3000"
volumes:
- ./frontend-react-js:/frontend-react-js
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/api/activities/home"]
interval: 1m30s
timeout: 30s
retries: 5
start_period: 30s
dynamodb-local:
# https://stackoverflow.com/questions/67533058/persist-local-dynamodb-data-in-volumes-lack-permission-unable-to-open-databa
# We needed to add user:root to get this working.
user: root
command: "-jar DynamoDBLocal.jar -sharedDb -dbPath ./data"
image: "amazon/dynamodb-local:latest"
container_name: dynamodb-local
ports:
- "8000:8000"
volumes:
- "./docker/dynamodb:/home/dynamodblocal/data"
working_dir: /home/dynamodblocal
db:
image: postgres:13-alpine
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password
ports:
- '5432:5432'
volumes:
- db:/var/lib/postgresql/data
# the name flag is a hack to change the default prepend folder
# name when outputting the image names
networks:
internal-network:
driver: bridge
name: cruddur
volumes:
db:
driver: local