Update mariadb (#285)
* add mariadb 11.5 and 11.6 adds latest mariadb docker images * update workflow and readme * Fix readme --------- Co-authored-by: Quinten <67589015+QuintenQVD0@users.noreply.github.com>
This commit is contained in:

committed by
GitHub

parent
730792652d
commit
3590298ab4
2
.github/workflows/mariadb.yml
vendored
2
.github/workflows/mariadb.yml
vendored
@@ -25,6 +25,8 @@ jobs:
|
||||
- '11.2'
|
||||
- '11.3'
|
||||
- '11.4'
|
||||
- '11.5'
|
||||
- '11.6'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: docker/setup-qemu-action@v3
|
||||
|
@@ -203,6 +203,10 @@ is tagged correctly.
|
||||
* `ghcr.io/parkervcp/yolks:mariadb_11.3`
|
||||
* [`MariaDB 11.4`](/mariadb/11.4)
|
||||
* `ghcr.io/parkervcp/yolks:mariadb_11.4`
|
||||
* [`MariaDB 11.5`](/mariadb/11.5)
|
||||
* `ghcr.io/parkervcp/yolks:mariadb_11.5`
|
||||
* [`MariaDB 11.6`](/mariadb/11.6)
|
||||
* `ghcr.io/parkervcp/yolks:mariadb_11.6`
|
||||
|
||||
### [MongoDB](/mongodb)
|
||||
|
||||
|
19
mariadb/11.5/Dockerfile
Normal file
19
mariadb/11.5/Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
# -----------------------------------------------------
|
||||
# MariaDB Image for Pterodactyl
|
||||
# -----------------------------------------------------
|
||||
FROM --platform=$TARGETOS/$TARGETARCH mariadb:11.5
|
||||
|
||||
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt update -y \
|
||||
&& apt install -y netcat-traditional \
|
||||
&& useradd -d /home/container -m container -s /bin/bash
|
||||
|
||||
USER container
|
||||
ENV USER=container HOME=/home/container
|
||||
WORKDIR /home/container
|
||||
|
||||
COPY ../entrypoint.sh /entrypoint.sh
|
||||
CMD ["/bin/bash", "/entrypoint.sh"]
|
19
mariadb/11.6/Dockerfile
Normal file
19
mariadb/11.6/Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
# -----------------------------------------------------
|
||||
# MariaDB Image for Pterodactyl
|
||||
# -----------------------------------------------------
|
||||
FROM --platform=$TARGETOS/$TARGETARCH mariadb:11.6
|
||||
|
||||
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt update -y \
|
||||
&& apt install -y netcat-traditional \
|
||||
&& useradd -d /home/container -m container -s /bin/bash
|
||||
|
||||
USER container
|
||||
ENV USER=container HOME=/home/container
|
||||
WORKDIR /home/container
|
||||
|
||||
COPY ../entrypoint.sh /entrypoint.sh
|
||||
CMD ["/bin/bash", "/entrypoint.sh"]
|
Reference in New Issue
Block a user