mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +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:
parent
e2ffe3b3fd
commit
beecd99686
1 changed files with 1 additions and 1 deletions
|
|
@ -209,7 +209,7 @@ def create_site_in_bench(args):
|
||||||
"new-site",
|
"new-site",
|
||||||
f"--db-host=mariadb", # Should match the compose service name
|
f"--db-host=mariadb", # Should match the compose service name
|
||||||
f"--db-type={args.db_type}", # Add the selected database type
|
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"--db-root-password=123", # Replace with your MariaDB password
|
||||||
f"--admin-password={args.admin_password}",
|
f"--admin-password={args.admin_password}",
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue