You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ If you didn't set a password during installation, (see logs for warning) use
63
63
`mariadb-admin -u root -p<PASSWORD>`
64
64
to set one at the docker prompt...
65
65
66
-
NOTE changing the MYSQL_ROOT_PASSWORD variable after the container has set up the initial databases has no effect, use the mysqladmin tool to change your MariaDB password.
66
+
NOTE changing any of the MYSQL_ variables after the container has set up the initial databases has no effect, use the mysqladmin tool or cli to make changes.
67
67
68
68
NOTE if you want to use (MYSQL_DATABASE MYSQL_USER MYSQL_PASSWORD) **all three** of these variables need to be set you cannot pick and choose.
69
69
@@ -179,10 +179,10 @@ Containers are configured using parameters passed at runtime (such as those abov
179
179
|`-e PUID=1000`| for UserID - see below for explanation |
180
180
|`-e PGID=1000`| for GroupID - see below for explanation |
181
181
|`-e TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
182
-
|`-e MYSQL_ROOT_PASSWORD=ROOT_ACCESS_PASSWORD`| Set this to root password for installation (minimum 4 characters & non-alphanumeric passwords must be properly escaped). |
183
-
|`-e MYSQL_DATABASE=USER_DB_NAME`| Specify the name of a database to be created on image startup.|
184
-
|`-e MYSQL_USER=MYSQL_USER`| This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here). |
185
-
|`-e MYSQL_PASSWORD=DATABASE_PASSWORD`| Set this to the password you want to use for you MYSQL_USER (minimum 4 characters & non-alphanumeric passwords must be properly escaped). |
182
+
|`-e MYSQL_ROOT_PASSWORD=ROOT_ACCESS_PASSWORD`| Set this to root password for installation (minimum 4 characters & non-alphanumeric passwords must be properly escaped). (valid only for first run) |
183
+
|`-e MYSQL_DATABASE=USER_DB_NAME`| Specify the name of a database to be created. (valid only for first run)|
184
+
|`-e MYSQL_USER=MYSQL_USER`| This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here). (valid only for first run) |
185
+
|`-e MYSQL_PASSWORD=DATABASE_PASSWORD`| Set this to the password you want to use for you MYSQL_USER (minimum 4 characters & non-alphanumeric passwords must be properly escaped). (valid only for first run) |
186
186
|`-e REMOTE_SQL=http://URL1/your.sql,https://URL2/your.sql`| Set this to ingest sql files from an http/https endpoint (comma seperated array). |
0 commit comments