mirror of
https://github.com/certbot/certbot.git
synced 2026-07-23 06:13:54 +02:00
one for development (that mounts the host git root to /opt/letsencrypt/src) and one for production (that doesn't).
14 lines
251 B
YAML
14 lines
251 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
|