From f6c2f66c7aa09111f8ffa99002d64482fb28fde9 Mon Sep 17 00:00:00 2001 From: bmen Date: Sun, 7 Jun 2020 00:52:58 +0200 Subject: [PATCH] Initial commit --- README.md | 0 docker-compose.yml | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 README.md create mode 100644 docker-compose.yml 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