Empty webapp complete

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Frank van den Berg
2026-07-01 23:10:46 +02:00
co-authored by Claude Sonnet 5
parent 4703d1f8bf
commit e503cf3930
63 changed files with 13245 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# Variables consumed by docker-compose.yml / docker-compose.override.yml.
# These are dev-only defaults; override with a docker/.env.local (gitignored)
# for anything that shouldn't be committed.
COMPOSE_PROJECT_NAME=share-control
# Matched against the host user so bind-mounted files (var/, vendor/) written
# by the php container stay owned by you instead of root. Override in a
# gitignored docker/.env.local if your UID/GID isn't the common 1000/1000.
UID=1000
GID=1000
NGINX_PORT=8080
MYSQL_DATABASE=app
MYSQL_USER=app
MYSQL_PASSWORD=!ChangeMe!
MYSQL_ROOT_PASSWORD=!ChangeMe!
RABBITMQ_DEFAULT_USER=guest
RABBITMQ_DEFAULT_PASS=guest
RABBITMQ_PORT=5672
RABBITMQ_MANAGEMENT_PORT=15672
MAILCATCHER_SMTP_PORT=1025
MAILCATCHER_WEB_PORT=1080