We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7e2826 commit 9855cecCopy full SHA for 9855cec
db/.gitkeep
docker/docker-compose.yaml
@@ -3,7 +3,7 @@ services:
3
build:
4
context: ..
5
dockerfile: docker/frontend/Dockerfile
6
- image: frontend
+ image: frontend-${COMPOSE_PROJECT_NAME}
7
ports:
8
- "${FRONTEND_PORT:-3000}:3000"
9
volumes:
@@ -13,7 +13,7 @@ services:
13
14
15
dockerfile: docker/backend/Dockerfile
16
- image: backend
+ image: backend-${COMPOSE_PROJECT_NAME}
17
init: true
18
19
- "${BACKEND_PORT:-8000}:8000"
@@ -30,3 +30,4 @@ services:
30
- ${WORKSPACE_PATH:-../workspace}:/app/workspace
31
#If file doesn't exist, use a dummy file
32
- ${GOOGLE_APPLICATION_CREDENTIALS:-.dummy-credentials.json}:/app/google-application-credentials.json
33
+ - ../db:/app/db
0 commit comments