From 105edb31490d0d6c970afd02373173ca179ff8b0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 31 Dec 2020 12:54:31 +0300 Subject: [PATCH] switch default web container to nginx instead of (unmaintained) caddy v1 --- docker-compose.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7726085..b15eb5b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -66,15 +66,15 @@ services: - db command: /dcron.sh -f - web: - image: cthulhoo/ttrss-web - restart: unless-stopped - ports: - - ${HTTP_PORT}:2015 - volumes: - - app:/var/www/html:ro - depends_on: - - app +# web: +# image: cthulhoo/ttrss-web +# restart: unless-stopped +# ports: +# - ${HTTP_PORT}:2015 +# volumes: +# - app:/var/www/html:ro +# depends_on: +# - app # web-ssl: # image: cthulhoo/ttrss-web-ssl @@ -91,15 +91,15 @@ services: # depends_on: # - app -# web-nginx: -# image: cthulhoo/ttrss-web-nginx -# restart: unless-stopped -# ports: -# - ${HTTP_PORT}:80 -# volumes: -# - app:/var/www/html:ro -# depends_on: -# - app + web-nginx: + image: cthulhoo/ttrss-web-nginx + restart: unless-stopped + ports: + - ${HTTP_PORT}:80 + volumes: + - app:/var/www/html:ro + depends_on: + - app volumes: db: