Browse Source

Initial commit

master
bmen 5 years ago
commit
f6c2f66c7a
2 changed files with 24 additions and 0 deletions
  1. +0
    -0
      README.md
  2. +24
    -0
      docker-compose.yml

+ 0
- 0
README.md View File


+ 24
- 0
docker-compose.yml View File

@ -0,0 +1,24 @@
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
- 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

Loading…
Cancel
Save