Füge Konfigurationsdateien für Gatus, Mosquitto, Postgres und MeshDash hinzu; aktualisiere Moodle-Umgebungsvariablen und erstelle Webstack-Dokumentation

This commit is contained in:
dominikhoebert
2026-05-29 14:52:00 +02:00
parent 146e070448
commit 4205254925
16 changed files with 265 additions and 6 deletions

31
postgres17/compose.yml Normal file
View File

@@ -0,0 +1,31 @@
name: postgres
services:
postgres:
container_name: postgres
image: postgres:17.6
restart: unless-stopped
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
volumes:
- ./postgres:/var/lib/postgresql/data
pgadmin:
container_name: pgadmin
image: dpage/pgadmin4:2025-09-02-1
environment:
PGADMIN_DEFAULT_EMAIL: admin@pgadmin.com
PGADMIN_DEFAULT_PASSWORD: password
PGADMIN_LISTEN_PORT: 80
ports:
- 15433:80
volumes:
- pgadmin:/var/lib/pgadmin
depends_on:
- postgres
volumes:
pgadmin: