17 lines
367 B
Bash
17 lines
367 B
Bash
# SuiteCRM Docker Compose Configuration
|
|
# Copy to .env and customize
|
|
|
|
# SuiteCRM
|
|
SUITECRM_PORT=8080
|
|
SUITECRM_SITE_URL=http://localhost:8080
|
|
|
|
# MariaDB
|
|
MYSQL_PORT=3307
|
|
MYSQL_ROOT_PASSWORD=change_this_root_password
|
|
MYSQL_DATABASE=suitecrm
|
|
MYSQL_USER=suitecrm
|
|
MYSQL_PASSWORD=change_this_db_password
|
|
|
|
# Redis (only with --profile full or --profile redis)
|
|
REDIS_PORT=6379
|