]> Untitled Git - proxy.git/blobdiff - docker-compose.yml
Added godot config
[proxy.git] / docker-compose.yml
index b646b690a19bca1920ba599e808f677cbdb02b7d..7007838924fc8b5661e492f37eb00ce825e48af4 100644 (file)
@@ -1,25 +1,17 @@
 version: '3'
 networks:
     proxy:
-        external:
-            name: proxy
+        external: true
 services:
-    nginx:
-        image: nginx:1.17
-        restart: on-failure
-        deploy:
-            restart_policy:
-                condition: on-failure
-                delay: 5s
-                max_attempts: 5
-                window: 10s
+    web:
+        image: nginx:1.27-alpine
         volumes:
-        - ./nginx.conf:/etc/nginx/nginx.conf
+        - /etc/letsencrypt/:/etc/letsencrypt/
+        - ./conf.d/:/etc/nginx/conf.d/
         environment:
         - NGINX_HOST=purplebirdman.com
-        - NGINX_PORT=80
+        - NGINX_PORT=443
         ports:
-        - 80:80
         - 443:443
         networks:
         - proxy