From df275b5e465945cefa97ab2543a61eb02856cbd2 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Wed, 2 Nov 2022 18:54:15 +0000 Subject: [PATCH] Removed nginx docker-compose file - Deprecated in favour of Traefik --- ReverseProxy/docker-compose.yml | 46 --------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 ReverseProxy/docker-compose.yml diff --git a/ReverseProxy/docker-compose.yml b/ReverseProxy/docker-compose.yml deleted file mode 100644 index 3bbefe2..0000000 --- a/ReverseProxy/docker-compose.yml +++ /dev/null @@ -1,46 +0,0 @@ -version: '3.8' - -services: - - #nginx (80, 443, 8080) - nginx: - image: 'jc21/nginx-proxy-manager:latest' - container_name: nginx - ports: - # These ports are in format : - - '80:80' # Public HTTP Port - - '443:443' # Public HTTPS Port - - '8080:81' # Admin Web Port - # Add any other Stream port you want to expose - # - '21:21' # FTP - # Uncomment the next line if you uncomment anything in the section - # environment: - # Uncomment this if you want to change the location of - # the SQLite DB file within the container - # DB_SQLITE_FILE: "/data/database.sqlite" - - # Uncomment this if IPv6 is not enabled on your host - # DISABLE_IPV6: 'true' - volumes: - - ./nginx/data:/data - - ./nginx/letsencrypt:/etc/letsencrypt - restart: unless-stopped - - networks: - - websites - - gitea - - databases - - bitwarden - - nextcloud - -networks: - websites: - name: websites_default - gitea: - name: gitea_default - databases: - name: database_default - bitwarden: - name: bitwarden_default - nextcloud: - name: nextcloud_default \ No newline at end of file