Files
Tiny-Lab/Local/storage/thlab-postgres/compose.yaml
T
2026-07-11 17:08:37 +00:00

43 lines
587 B
YAML

name: thlab-postgres
########## ===== NETWORKS ===== ##########
networks:
thlab_backend:
name: thlab_backend
#####
########## ===== VOLUMES ===== ##########
volumes:
postgres_data:
name: thlab_postgres
driver: local
#####
########## ===== SERVICES ===== ##########
services:
thlab-postgres:
image: postgres:17-alpine
container_name: thlab-postgres
restart: unless-stopped
env_file: [.secrets/.env]
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
thlab_backend:
aliases:
- postgres
#####