Files
ChannelTree/docker-compose.yml
T
2026-03-12 01:34:16 -04:00

17 lines
320 B
YAML

services:
postgres:
image: postgres:latest
container_name: tgtree-db
restart: unless-stopped
environment:
POSTGRES_USER: cat
POSTGRES_PASSWORD: meow
POSTGRES_DB: tgtree
ports:
- "127.0.0.1:5444:5432"
volumes:
- tgtree-db:/var/lib/postgresql
volumes:
tgtree-db: