9 lines
317 B
YAML
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 |