mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-24 08:45:10 +00:00
- Created example environment files for MariaDB, production, and Traefik with placeholders for sensitive information. - Implemented backup and site creation scripts to facilitate ERPNext site management. - Developed deployment script to manage the setup of ERPNext, MariaDB, and Traefik services using Docker Compose. - Added logging and validation scripts to assist in monitoring and ensuring correct configuration. - Included stop script to manage service shutdowns gracefully. - Enhanced error handling and user prompts for better usability.
16 lines
688 B
Text
16 lines
688 B
Text
# MariaDB Configuration for ERPNext Production
|
|
# This database will be shared across all ERPNext benches on this server
|
|
|
|
# ============================================
|
|
# Database Password
|
|
# ============================================
|
|
# IMPORTANT: Change this to a strong password
|
|
# This password will be used for the MariaDB root user
|
|
DB_PASSWORD=CHANGEME_strong_password_must_match_production_env
|
|
|
|
# SECURITY NOTE:
|
|
# - Use a strong password with at least 16 characters
|
|
# - Include uppercase, lowercase, numbers, and special characters
|
|
# - Do not use common words or patterns
|
|
# - Store this password securely (use a password manager)
|
|
# - This same password must be set in production.env
|