mirror of
https://github.com/certbot/certbot.git
synced 2026-01-13 10:22:20 +03:00
This is useful for the docker development container, which we will want venv to persist for across runs.
15 lines
279 B
YAML
15 lines
279 B
YAML
production:
|
|
build: .
|
|
ports:
|
|
- "443:443"
|
|
|
|
# For development, mount git root to /opt/letsencrypt/src in order to
|
|
# make the dev workflow more vagrant-like.
|
|
development:
|
|
build: .
|
|
ports:
|
|
- "443:443"
|
|
volumes:
|
|
- .:/opt/letsencrypt/src
|
|
- /opt/letsencrypt/venv
|