2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-02-08 23:18:28 +00:00

fix: --no-mariadb-socket is DEPRECATED (#1525)

--no-mariadb-socket is DEPRECATED; use --mariadb-user-host-login-scope='%' (wildcard) or --mariadb-user-host-login-scope=<myhostscope>, instead.
This commit is contained in:
0xD0M1M0 2024-12-07 12:59:14 +01:00 committed by GitHub
parent e2ffe3b3fd
commit beecd99686
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -209,7 +209,7 @@ def create_site_in_bench(args):
"new-site",
f"--db-host=mariadb", # Should match the compose service name
f"--db-type={args.db_type}", # Add the selected database type
f"--no-mariadb-socket",
f"--mariadb-user-host-login-scope=%",
f"--db-root-password=123", # Replace with your MariaDB password
f"--admin-password={args.admin_password}",
]