summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-22 10:11:24 +0300
committerAndrew Dolgov <[email protected]>2023-10-22 10:11:24 +0300
commitaec8cdd0c8f8e5134f96f8b55e48d503f8546f74 (patch)
treee5048e0e908a1532f4e0293ddb0ecfd283ead3c4
parentcb90393a7e449f21358f367c6b77eabbed471898 (diff)
enable updater by default
-rw-r--r--docker-compose.yml23
1 files changed, 11 insertions, 12 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index b772981f8..2925068e3 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -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
-