5152330c7c
Cosmetic-only rename, no functional/data-layer change: service names
(php-dynamic-qrcode -> qrforge-app, php-dynamic-qrcode-db -> qrforge-db),
the network (php-dynamic-qrcode-network -> qrforge-network), and the two
named volumes (php_dynamic_qrcode_db_data -> qrforge_db_data,
php_dynamic_qrcode_saved_qrcode_data -> qrforge_qrcode_storage), plus
matching references in nginx.conf's fastcgi_pass and .env.example's
DATABASE_HOST default. Database name itself ('qrcode') intentionally
left unchanged per user request.
Volume rename requires an explicit data migration on already-deployed
hosts (a bare name change would otherwise attach a fresh empty volume) -
handled separately as part of this same deploy, not by this commit.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Fo3DiRRpmz2DXjD7Uzhc8u
16 lines
393 B
Bash
16 lines
393 B
Bash
# Copy to .env and adjust the values. .env is not committed (see .gitignore).
|
|
|
|
TYPE=docker
|
|
QRCODE_GENERATOR=internal-chillerlan.qrcode
|
|
BASE_URL=http://localhost
|
|
|
|
DATABASE_HOST=qrforge-db
|
|
DATABASE_PORT=3306
|
|
DATABASE_NAME=qrcode
|
|
DATABASE_USER=qrcode
|
|
DATABASE_PASSWORD=change-me-to-a-strong-password
|
|
DATABASE_PREFIX=
|
|
DATABASE_CHARSET=utf8
|
|
|
|
MYSQL_ROOT_PASSWORD=change-me-to-a-strong-root-password
|