mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
20 lines
376 B
YAML
20 lines
376 B
YAML
version: '2'
|
|
services:
|
|
production:
|
|
build: .
|
|
ports:
|
|
- "443:443"
|
|
|
|
# For development, mount git root to /opt/certbot/src in order to
|
|
# make the dev workflow more vagrant-like.
|
|
development:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-dev
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- .:/opt/certbot/src
|
|
- /opt/certbot/venv
|