This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Fitz_Studio/data/postgresql/docker-compose.yml
T
2025-05-05 02:21:55 +02:00

16 lines
332 B
YAML

version: '3.8'
services:
db:
image: postgres:15
container_name: postgres_container
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 7Souw9SFD5P5RYpRWuTVvFkY7zlxATcN
POSTGRES_DB: fitz_db
ports:
- "5432:5432"
volumes:
- ./pgdata:/var/lib/postgresql/data