From a7022f414d70334626283eaa1d9863c740611464 Mon Sep 17 00:00:00 2001
From: Armin Co <armin.co@hs-bochum.de>
Date: Tue, 28 Jul 2020 13:44:00 +0200
Subject: [PATCH] Initial commit

---
 docker-compose.yml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 docker-compose.yml

diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..1032bea
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,26 @@
+version: '3.4'
+services:
+    reverse_proxy:
+        container_name: reverse_proxy
+        image: linuxserver/letsencrypt
+        cap_add:
+            - NET_ADMIN # for fail2ban
+        environment:
+            - PUID=1000
+            - PGID=1000
+            - TZ=Europe/Berlin
+            - URL=your-domain.com
+            - SUBDOMAINS=your_subdomains
+            - VALIDATION=http
+            - EMAIL=your_email
+        volumes:
+            - ./reverse_proxy:/config
+        ports:
+            - 443:443
+            - 80:80
+        networks:
+            - reverse_proxy
+        restart: always
+
+networks:
+    reverse_proxy:
\ No newline at end of file
-- 
GitLab