Added Postgres

This commit is contained in:
DerGrumpf 2025-05-06 11:50:40 +02:00
parent 10ec1d35b6
commit a6db921bea
2 changed files with 17 additions and 0 deletions

0
hub/jhub/compose.yml Normal file
View File

View File

@ -0,0 +1,17 @@
services:
db:
image: postgres
restart: always
environment:
POSTRGES_PASSWORD: 123456
volumes:
- pgdata:/var/lib/postgresql/data
adminer:
image: adminer
restart: always
ports:
- 8080:8080
volumes:
pgdata: