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:
parent
4e5e529eb6
commit
93ab83f635
2 changed files with 21 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue