1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-06-12 15:09:52 +02:00

switch default web container to nginx instead of (unmaintained) caddy v1

This commit is contained in:
Andrew Dolgov 2020-12-31 12:54:31 +03:00
parent 3ebfd86806
commit 105edb3149

View file

@ -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: