commit 33cca1c430d3d442876c73c071c5f6769c49c7d5 Author: bmen Date: Thu Sep 12 22:50:24 2019 +0200 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..4cc05f0 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Docker Container als Web-Proxy mit letsencrypt + +https://github.com/linuxserver/docker-letsencrypt diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d5098cb --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,25 @@ +--- +version: "2" +services: + letsencrypt: + image: linuxserver/letsencrypt + container_name: letsencrypt + cap_add: + - NET_ADMIN + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + - URL=bmen.cc + - SUBDOMAINS=www,git,cloud + - VALIDATION=http + - EMAIL=webmaster@bmen.cc + - DHLEVEL=2048 + - ONLY_SUBDOMAINS=false + - STAGING=false + volumes: + - /opt/appdata/letsencrypt:/config + ports: + - 443:443 + - 80:80 + restart: unless-stopped