frontend/docker-compose.yml
2020-12-19 14:28:49 +01:00

9 lines
317 B
YAML

version: '3'
services:
httpd:
build: .
environment:
- APP_CONF=config={"baseUrl":"http://localhost:8081"}
command: ["sh", "-c", "envsubst < /etc/nginx/conf.d/default.conf.template > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"]
ports:
- 4050:80