# Copy to .env — read directly by docker-compose.yml (env_file), no separate mysql container.
# Point these at the MySQL database created in cPanel (MySQL Databases tool).
# If that database is on the same physical server as Docker, use host.docker.internal
# (the compose file maps it to the host via host-gateway) rather than "localhost" —
# "localhost" inside the container means the container itself, not the host.
DB_HOST=host.docker.internal
DB_PORT=3306
DB_NAME=cpaneluser_bugreporter
DB_USERNAME=cpaneluser_bugreporter
DB_PASSWORD=changeme
