15 lines
466 B
YAML
15 lines
466 B
YAML
# Development override: point the web service to rad/.env.dev and map nginx to
|
|
# non-privileged host ports so you can run without sudo.
|
|
|
|
services:
|
|
web:
|
|
env_file:
|
|
- ../.env.dev
|
|
nginx:
|
|
# Development nginx override: mount a simplified config that does not
|
|
# reference LetsEncrypt certs so the container can start without real
|
|
# certificates present on the host.
|
|
volumes:
|
|
- ../deploy/nginx/dev.conf:/etc/nginx/conf.d/default.conf:ro
|
|
|