mirror of
https://git.tt-rss.org/fox/ttrss-docker-compose.git
synced 2025-08-18 16:56:57 +02:00
22 lines
410 B
YAML
22 lines
410 B
YAML
version: '3'
|
|
|
|
# set database password in .env
|
|
# please don't use quote (') or (") symbols in variables
|
|
|
|
services:
|
|
db:
|
|
image: cthulhoo/postgres-count-bits:12-latest
|
|
build:
|
|
context:
|
|
./db
|
|
restart: unless-stopped
|
|
volumes:
|
|
- db:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
|
|
volumes:
|
|
db:
|
|
|