-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
28 lines (27 loc) · 941 Bytes
/
docker-compose.dev.yml
File metadata and controls
28 lines (27 loc) · 941 Bytes
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
services:
backend:
build:
context: ./backend
args:
APP_VERSION: ${APP_VERSION:-v0.0.0-dev}
GIT_SHA: ${GIT_SHA:-unknown}
env_file: .env
ports:
- "8000:8000"
volumes:
- ./data:/app/data
- /etc/ssl/certs/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt:ro # only needed if you use custom certificates in you environment
environment:
REQUESTS_CA_BUNDLE: /etc/ssl/certs/ca-certificates.crt # only needed if you use custom certificates in you environment
SSL_CERT_FILE: /etc/ssl/certs/ca-certificates.crt # only needed if you use custom certificates in you environment
restart: unless-stopped
frontend:
build:
context: ./frontend
args:
PUBLIC_DEFAULT_LOCALE: ${PUBLIC_DEFAULT_LOCALE:-en}
APP_VERSION: ${APP_VERSION:-v0.0.0-dev}
GIT_SHA: ${GIT_SHA:-unknown}
ports:
- "8001:80"
restart: unless-stopped