You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
542 B

version: "2.1"
services:
letsencrypt:
image: linuxserver/letsencrypt
container_name: nginx-proxy
cap_add:
- NET_ADMIN
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
- URL=openwill.de
- SUBDOMAINS=www,pad,gitea,cloud
- VALIDATION=http
- EMAIL=webmaster@openwill.de
- DHLEVEL=2048
- ONLY_SUBDOMAINS=false
- STAGING=false #optional
volumes:
- /opt/docker/nginx-proxy/config:/config
ports:
- 443:443
- 80:80
restart: always