Add: basic docker compose for postgress

This commit is contained in:
Aroy-Art 2025-03-10 22:08:14 +01:00
parent 7fc88dc0e9
commit f7bc6f4d5c
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -0,0 +1,29 @@
services:
db:
image: postgres:16
container_name: postgres_dev
restart: unless-stopped
environment:
POSTGRES_USER: archivist
POSTGRES_PASSWORD: password
POSTGRES_DB: archivist
TZ: Europe/Berlin
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
pgadmin:
image: dpage/pgadmin4
container_name: pgadmin_dev
restart: unless-stopped #always
environment:
PGADMIN_DEFAULT_EMAIL: aroy-art@pm.me
PGADMIN_DEFAULT_PASSWORD: admin
ports:
- "5050:80"
depends_on:
- db
volumes:
postgres_data: