summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-22 09:55:07 +0300
committerAndrew Dolgov <[email protected]>2023-10-22 09:55:07 +0300
commitcb90393a7e449f21358f367c6b77eabbed471898 (patch)
tree4ebb73067eee7911b285fe28d30fc141695509cf
parent028afdd7d59dcbf75521529ad33c0572fad4a58a (diff)
compose tweaks
-rw-r--r--docker-compose.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index 5beb8dd07..b772981f8 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -15,6 +15,8 @@ services:
app:
image: cthulhoo/ttrss-fpm-pgsql-static:latest
+ environment:
+ SKIP_RSYNC_ON_STARTUP: true
build:
dockerfile: .docker/app/Dockerfile
context: .
@@ -22,20 +24,20 @@ services:
env_file:
- .env
volumes:
- - app:/var/www/html
+ - .:/var/www/html/tt-rss
depends_on:
- db
- updater:
- image: cthulhoo/ttrss-fpm-pgsql-static:latest
- restart: unless-stopped
- env_file:
- - .env
- volumes:
- - app:/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
@@ -48,9 +50,7 @@ services:
ports:
- ${HTTP_PORT}:80
volumes:
- - app:/var/www/html:ro
+ - .:/var/www/html/tt-rss:ro
depends_on:
- app
-volumes:
- app: