1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-06-10 22:19:53 +02:00

add optional configuration for nginx frontend container

This commit is contained in:
Andrew Dolgov 2020-02-01 10:58:54 +03:00
parent 4e5e529eb6
commit 93ab83f635
2 changed files with 21 additions and 0 deletions

View file

@ -73,6 +73,16 @@ 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
volumes:
db:
app:

View file

@ -81,6 +81,17 @@ services:
depends_on:
- app
web-nginx:
image: cthulhoo/ttrss-web-nginx:latest
build: ./web-nginx
restart: unless-stopped
ports:
- ${HTTP_PORT}:80
volumes:
- app:/var/www/html:ro
depends_on:
- app
volumes:
db:
app: