diff --git a/.env-dist b/.env-dist index 3fc6a75..e124c29 100644 --- a/.env-dist +++ b/.env-dist @@ -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 diff --git a/docker-compose.yml b/docker-compose.yml index c614031..5756137 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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 @@ -16,10 +18,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 @@ -31,10 +29,6 @@ services: context: ./app 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 @@ -49,10 +43,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