diff options
Diffstat (limited to 'docker-compose.prod.yml')
| -rw-r--r-- | docker-compose.prod.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml new file mode 100644 index 00000000..63166967 --- /dev/null +++ b/docker-compose.prod.yml @@ -0,0 +1,14 @@ +version: "3.8" + +# Docker Compose overrides for production environments +services: + frontend: + build: + args: + OPENDC_API_BASE_URL: ${OPENDC_API_BASE_URL} + ports: + - "8080:80" + + api: + ports: + - "8081:8081" |
