certbot/docker-compose.yml

20 lines
376 B
YAML
Raw Normal View History

version: '2'
services:
production:
build: .
ports:
- "443:443"
2016-04-14 13:20:23 -04:00
# 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