Initial commit

This commit is contained in:
bmen 2019-09-12 22:50:24 +02:00
commit 33cca1c430
2 changed files with 28 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Docker Container als Web-Proxy mit letsencrypt
https://github.com/linuxserver/docker-letsencrypt

25
docker-compose.yml Normal file
View File

@ -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