Initial commit – AufmaßCreater v2.35

This commit is contained in:
2026-06-10 11:03:43 +02:00
commit 84c933ea9c
2823 changed files with 490495 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
services:
postgres:
image: postgres:16-alpine
security_opt: [apparmor=unconfined]
restart: unless-stopped
volumes:
- ./data/postgres:/var/lib/postgresql/data
environment:
POSTGRES_DB: synapse
POSTGRES_USER: synapse
POSTGRES_PASSWORD: changeme_matrix_db_pass
healthcheck:
test: ["CMD", "pg_isready", "-U", "synapse"]
interval: 10s
timeout: 5s
retries: 5
synapse:
image: matrixdotorg/synapse:latest
security_opt: [apparmor=unconfined]
restart: unless-stopped
ports:
- "8008:8008"
volumes:
- ./data:/data
environment:
SYNAPSE_SERVER_NAME: dd-matrix.netbird.selfhosted
SYNAPSE_REPORT_STATS: "no"
depends_on:
postgres:
condition: service_healthy
element:
image: vectorim/element-web:latest
security_opt: [apparmor=unconfined]
restart: unless-stopped
ports:
- "8080:80"
volumes:
- ./element-config:/app/config