Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
27 lines
746 B
Bash
27 lines
746 B
Bash
# 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
|