Initial commit

This commit is contained in:
2025-08-01 22:04:00 +02:00
commit d1f466d1d4
155 changed files with 15995 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
php:
build:
context: resources/docker/php
ports:
- 80:80
- 443:443
volumes:
- ./:/app
environment:
- XDG_CONFIG_HOME=/app
pgsql:
image: postgres:17.5-alpine
ports:
- 5432:5432
volumes:
- ./resources/docker/db-data:/var/lib/postgresql/data:delegated
environment:
- POSTGRES_DB=app
- POSTGRES_USER=app
- POSTGRES_PASSWORD=secret