Some checks failed
Docker Build & Push SugarCRM 6.5 CE / build-and-push (push) Has been cancelled
- PHP 5.6 Apache Dockerfile (Debian Jessie, archive repos) - Source from bklein01/sugarcrm GitHub mirror - MySQL 5.7 database with healthcheck - Silent install via init.sh (AdminWizard disabled) - REST v4.1 API test script (test_api.py) - Gitea Actions CI/CD for registry push - Full README with API docs and pitfall notes
17 lines
384 B
Bash
17 lines
384 B
Bash
# SugarCRM 6.5.26 CE Docker Umgebung
|
|
# Passwörter ANPASSEN vor erstem Start!
|
|
|
|
# Ports
|
|
SUGARCRM_PORT=2080
|
|
MYSQL_PORT=3306
|
|
|
|
# MySQL / MariaDB
|
|
MYSQL_ROOT_PASSWORD=change_this_root_password
|
|
MYSQL_DATABASE=sugarcrm
|
|
MYSQL_USER=sugarcrm
|
|
MYSQL_PASSWORD=change_this_db_password
|
|
|
|
# SugarCRM Admin (wird bei Erst-Installation gesetzt)
|
|
SUGARCRM_ADMIN_USER=admin
|
|
SUGARCRM_ADMIN_PASSWORD=admin123
|