Skip to content

Commit 3da9ec5

Browse files
committed
Run jenkins
Signed-off-by: Eric Nemchik <[email protected]>
1 parent 0c2735e commit 3da9ec5

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ pipeline {
2424
DEV_DOCKERHUB_IMAGE = 'lsiodev/mariadb'
2525
PR_DOCKERHUB_IMAGE = 'lspipepr/mariadb'
2626
DIST_IMAGE = 'alpine'
27-
DIST_TAG = '3.18'
28-
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.18/main/'
27+
DIST_TAG = '3.19'
28+
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.19/main/'
2929
DIST_REPO_PACKAGES = 'mariadb'
3030
MULTIARCH='true'
3131
CI='true'

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ services:
145145
- MYSQL_PASSWORD=DATABASE_PASSWORD #optional
146146
- REMOTE_SQL=http://URL1/your.sql,https://URL2/your.sql #optional
147147
volumes:
148-
- path_to_data:/config
148+
- /path/to/mariadb/config:/config
149149
ports:
150150
- 3306:3306
151151
restart: unless-stopped
@@ -165,7 +165,7 @@ docker run -d \
165165
-e MYSQL_PASSWORD=DATABASE_PASSWORD `#optional` \
166166
-e REMOTE_SQL=http://URL1/your.sql,https://URL2/your.sql `#optional` \
167167
-p 3306:3306 \
168-
-v path_to_data:/config \
168+
-v /path/to/mariadb/config:/config \
169169
--restart unless-stopped \
170170
lscr.io/linuxserver/mariadb:latest
171171
```
@@ -185,7 +185,7 @@ Containers are configured using parameters passed at runtime (such as those abov
185185
| `-e MYSQL_USER=MYSQL_USER` | This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here). |
186186
| `-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). |
187187
| `-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). |
188-
| `-v /config` | Contains the db itself and all assorted settings. |
188+
| `-v /config` | Persistent config files |
189189

190190
## Environment variables from files (Docker secrets)
191191

@@ -363,6 +363,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
363363

364364
## Versions
365365

366+
* **23.12.23:** - Rebase to Alpine 3.19.
366367
* **09.06.23:** - Update lc_messages path in shipped custom.cnf to match upstream.
367368
* **25.05.23:** - Rebase to Alpine 3.18, deprecate armhf.
368369
* **04.02.23:** - Minor updates to defaults in custom.cnf.

0 commit comments

Comments
 (0)