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

use TTRSS_DB_* variables instead of POSTGRES_* to set database configuration

This commit is contained in:
Andrew Dolgov 2021-02-03 06:25:07 +03:00
parent 49598c87da
commit 9fc0aaa2cd
2 changed files with 7 additions and 16 deletions

View file

@ -1,8 +1,9 @@
# Copy this file to .env before building the container.
# Put any local modifications here.
POSTGRES_USER=postgres
POSTGRES_PASSWORD=password
TTRSS_DB_USER=postgres
TTRSS_DB_NAME=postgres
TTRSS_DB_PASS=password
# This is only used by web-ssl container.
#HTTP_HOST=localhost

View file

@ -4,8 +4,10 @@ services:
db:
image: postgres:12-alpine
restart: unless-stopped
env_file:
- .env
environment:
- POSTGRES_USER=${TTRSS_DB_USER}
- POSTGRES_PASSWORD=${TTRSS_DB_PASS}
- POSTGRES_DB=${TTRSS_DB_NAME}
volumes:
- db:/var/lib/postgresql/data
@ -14,10 +16,6 @@ services:
restart: unless-stopped
env_file:
- .env
environment:
- TTRSS_DB_NAME=${POSTGRES_USER}
- TTRSS_DB_USER=${POSTGRES_USER}
- TTRSS_DB_PASS=${POSTGRES_PASSWORD}
volumes:
- app:/var/www/html
- ./config.d:/opt/tt-rss/config.d:ro
@ -27,10 +25,6 @@ services:
backups:
image: cthulhoo/ttrss-fpm-pgsql-static
restart: unless-stopped
environment:
- TTRSS_DB_NAME=${POSTGRES_USER}
- TTRSS_DB_USER=${POSTGRES_USER}
- TTRSS_DB_PASS=${POSTGRES_PASSWORD}
volumes:
- backups:/backups
- app:/var/www/html
@ -43,10 +37,6 @@ services:
restart: unless-stopped
env_file:
- .env
environment:
- TTRSS_DB_NAME=${POSTGRES_USER}
- TTRSS_DB_USER=${POSTGRES_USER}
- TTRSS_DB_PASS=${POSTGRES_PASSWORD}
volumes:
- app:/var/www/html
- ./config.d:/opt/tt-rss/config.d:ro