From e9d94357aba274bc52797454153409f0b2eb46d6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 31 Dec 2020 12:46:05 +0300 Subject: [PATCH] switch web container default to nginx --- docker-compose.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index d78da83..3fab3d2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -69,15 +69,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 @@ -94,15 +94,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: