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: .github/workflows/greetings.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,6 @@ jobs:
8
8
steps:
9
9
- uses: actions/first-interaction@v1
10
10
with:
11
-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-mariadb/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-mariadb/blob/master/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!'
11
+
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
12
12
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-mariadb/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
56
56
| :----: | :----: | ---- |
57
57
| x86-64 | ✅ | amd64-\<version tag\>|
58
58
| arm64 | ✅ | arm64v8-\<version tag\>|
59
-
| armhf| ✅ | arm32v7-\<version tag\>|
59
+
| armhf| ✅ | arm32v7-\<version tag\>|
60
60
61
61
## Application Setup
62
62
@@ -126,8 +126,8 @@ services:
126
126
environment:
127
127
- PUID=1000
128
128
- PGID=1000
129
+
- TZ=Etc/UTC
129
130
- MYSQL_ROOT_PASSWORD=ROOT_ACCESS_PASSWORD
130
-
- TZ=Europe/London
131
131
- MYSQL_DATABASE=USER_DB_NAME #optional
132
132
- MYSQL_USER=MYSQL_USER #optional
133
133
- MYSQL_PASSWORD=DATABASE_PASSWORD #optional
@@ -146,8 +146,8 @@ docker run -d \
146
146
--name=mariadb \
147
147
-e PUID=1000 \
148
148
-e PGID=1000 \
149
+
-e TZ=Etc/UTC \
149
150
-e MYSQL_ROOT_PASSWORD=ROOT_ACCESS_PASSWORD \
150
-
-e TZ=Europe/London \
151
151
-e MYSQL_DATABASE=USER_DB_NAME `#optional` \
152
152
-e MYSQL_USER=MYSQL_USER `#optional` \
153
153
-e MYSQL_PASSWORD=DATABASE_PASSWORD `#optional` \
@@ -156,6 +156,7 @@ docker run -d \
156
156
-v path_to_data:/config \
157
157
--restart unless-stopped \
158
158
lscr.io/linuxserver/mariadb:latest
159
+
159
160
```
160
161
161
162
## Parameters
@@ -167,8 +168,8 @@ Container images are configured using parameters passed at runtime (such as thos
167
168
|`-p 3306`| Mariadb listens on this port. |
168
169
|`-e PUID=1000`| for UserID - see below for explanation |
169
170
|`-e PGID=1000`| for GroupID - see below for explanation |
171
+
|`-e TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
170
172
|`-e MYSQL_ROOT_PASSWORD=ROOT_ACCESS_PASSWORD`| Set this to root password for installation (minimum 4 characters & non-alphanumeric passwords must be properly escaped). |
171
-
|`-e TZ=Europe/London`| Specify a timezone to use EG Europe/London. |
172
173
|`-e MYSQL_DATABASE=USER_DB_NAME`| Specify the name of a database to be created on image startup. |
173
174
|`-e MYSQL_USER=MYSQL_USER`| This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here). |
174
175
|`-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). |
0 commit comments