blob: 0a2e85a03ab2239bf5872b75bdec9ac3bb6ccb6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Docker Compose overrides for production environments
services:
server:
ports:
- "8080:8080"
environment:
SENTRY_ENVIRONMENT: "production"
NEXT_PUBLIC_API_BASE_URL: ${OPENDC_API_BASE_URL}
QUARKUS_HTTP_CORS_ORIGINS: https://app.opendc.org
website:
image: ghcr.io/atlarge-research/opendc-website:v2.4m
ports:
- "3000:80"
|