This commit is contained in:
2026-05-24 15:59:50 -04:00
parent 74c21ee5cc
commit 0db27bada2
282 changed files with 288 additions and 36 deletions

View File

@@ -0,0 +1,23 @@
version: "3.9"
services:
postgresql:
image: "postgres"
restart: always
ports:
- 5432:5432
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- postgresql_data:/var/lib/postgresql/data
adminer:
image: adminer
restart: always
ports:
- 8080:8080
volumes:
- postgresql_data:/var/lib/postgresql/data
volumes:
postgresql_data: