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

remove second compose YML

This commit is contained in:
Andrew Dolgov 2020-10-01 11:46:04 +03:00
parent 4d0dfc8083
commit 8dbdb70f5c
4 changed files with 3 additions and 21 deletions

View file

@ -6,6 +6,9 @@ version: '3'
services:
db:
image: cthulhoo/ttrss-db-pgsql-12-count-bits:latest
build:
context:
./db
restart: unless-stopped
volumes:
- db:/var/lib/postgresql/data

View file

@ -1,21 +0,0 @@
version: '3'
# set database password in .env
# please don't use quote (') or (") symbols in variables
services:
db:
image: cthulhoo/ttrss-db-pgsql-12-count-bits:${BUILD_TAG}
build:
context:
./db
restart: unless-stopped
volumes:
- db:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_USER=${POSTGRES_USER}
volumes:
db: