Files
Escapepage/docker/mysql/init/allow_remote.sql
2026-01-17 15:12:08 +01:00

6 lines
213 B
SQL

-- This script ensures the user has correct privileges.
-- The user is actually created by the official MySQL image using environment variables.
GRANT ALL PRIVILEGES ON *.* TO 'escapepage'@'%';
FLUSH PRIVILEGES;