Skip to content

Commit

Permalink
Merge pull request #213 from djohts/mariadb_11.2
Browse files Browse the repository at this point in the history
Add MariaDB 11.2
  • Loading branch information
parkervcp committed Dec 26, 2023
2 parents 6bb8c6f + 17e3611 commit 2127820
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- '10.5'
- '10.6'
- '10.7'
- '11.2'
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ is tagged correctly.
* `ghcr.io/parkervcp/yolks:mariadb_10.6`
* [`MariaDB 10.7`](/mariadb/10.7)
* `ghcr.io/parkervcp/yolks:mariadb_10.7`
* [`MariaDB 11.2`](/mariadb/11.2)
* `ghcr.io/parkervcp/yolks:mariadb_11.2`

### [MongoDB](/mongodb)

Expand Down
19 changes: 19 additions & 0 deletions mariadb/11.2/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.2

LABEL author="Michael Parker" maintainer="[email protected]"

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 2127820

Please sign in to comment.