Last active
June 9, 2019 07:14
-
-
Save romfrolov/dda160d0c32184056235102f6621411c to your computer and use it in GitHub Desktop.
Minimalistic Let's Encrypt docker-compose configuration using linuxserver/letsencrypt image.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
letsencrypt: | |
image: linuxserver/letsencrypt | |
container_name: letsencrypt | |
restart: unless-stopped | |
network_mode: host | |
volumes: | |
- ./config/letsencrypt:/config | |
env_file: '.env' |
Author
romfrolov
commented
May 28, 2019
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment