enable updater by default

This commit is contained in:
Andrew Dolgov 2023-10-22 10:11:24 +03:00
parent cb90393a7e
commit aec8cdd0c8
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
1 changed files with 11 additions and 12 deletions

View File

@ -1,4 +1,4 @@
# simplified compose for local building & development
# simplified compose for local development
version: '3'
@ -28,16 +28,16 @@ services:
depends_on:
- db
# updater:
# image: cthulhoo/ttrss-fpm-pgsql-static:latest
# restart: unless-stopped
# env_file:
# - .env
# volumes:
# - .:/var/www/html
# depends_on:
# - app
# command: /opt/tt-rss/updater.sh
updater:
image: cthulhoo/ttrss-fpm-pgsql-static:latest
restart: unless-stopped
env_file:
- .env
volumes:
- .:/var/www/html
depends_on:
- app
command: /opt/tt-rss/updater.sh
web-nginx:
image: cthulhoo/ttrss-web-nginx:latest
@ -53,4 +53,3 @@ services:
- .:/var/www/html/tt-rss:ro
depends_on:
- app