blob: 96bb004e2016144cf721b6a70bb88b69889d162b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
version: "3.8"
# Docker Compose overrides for production environments
services:
frontend:
ports:
- "8080:80"
environment:
API_BASE_URL: ${OPENDC_API_BASE_URL}
api:
ports:
- "8081:8081"
environment:
SENTRY_ENVIRONMENT: "production"
simulator:
environment:
SENTRY_ENVIRONMENT: "production"
|