Initial commit
This commit is contained in:
commit
33cca1c430
|
@ -0,0 +1,3 @@
|
|||
# Docker Container als Web-Proxy mit letsencrypt
|
||||
|
||||
https://github.com/linuxserver/docker-letsencrypt
|
|
@ -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
|
Loading…
Reference in New Issue