commit f6c2f66c7aa09111f8ffa99002d64482fb28fde9 Author: bmen Date: Sun Jun 7 00:52:58 2020 +0200 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..40a4d38 --- /dev/null +++ b/docker-compose.yml @@ -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 \ No newline at end of file