Skip to content

Commit

Permalink
Add MariaDB 11.3 & 11.4 (#241)
Browse files Browse the repository at this point in the history
* Update mariadb.yml

Add '11.3' and '11.4'

* Update README.md

* Create Dockerfile - MariaDB 11.3

* Create Dockerfile - MariaDB 11.4
  • Loading branch information
Diddyy authored May 10, 2024
1 parent a297000 commit b177dcc
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
- '10.6'
- '10.7'
- '11.2'
- '11.3'
- '11.4'
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ is tagged correctly.
* `ghcr.io/parkervcp/yolks:mariadb_10.7`
* [`MariaDB 11.2`](/mariadb/11.2)
* `ghcr.io/parkervcp/yolks:mariadb_11.2`
* [`MariaDB 11.3`](/mariadb/11.3)
* `ghcr.io/parkervcp/yolks:mariadb_11.3`
* [`MariaDB 11.4`](/mariadb/11.4)
* `ghcr.io/parkervcp/yolks:mariadb_11.4`

### [MongoDB](/mongodb)

Expand Down
19 changes: 19 additions & 0 deletions mariadb/11.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -----------------------------------------------------
# MariaDB Image for Pterodactyl
# -----------------------------------------------------
FROM --platform=$TARGETOS/$TARGETARCH mariadb:11.3

LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"

ENV DEBIAN_FRONTEND noninteractive

RUN apt update -y \
&& apt install -y netcat \
&& 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 changes: 19 additions & 0 deletions mariadb/11.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -----------------------------------------------------
# MariaDB Image for Pterodactyl
# -----------------------------------------------------
FROM --platform=$TARGETOS/$TARGETARCH mariadb:11.4

LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"

ENV DEBIAN_FRONTEND noninteractive

RUN apt update -y \
&& apt install -y netcat \
&& 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"]

0 comments on commit b177dcc

Please sign in to comment.