Add MariaDB 11.2
This commit is contained in:
1
.github/workflows/mariadb.yml
vendored
1
.github/workflows/mariadb.yml
vendored
@@ -22,6 +22,7 @@ jobs:
|
|||||||
- '10.5'
|
- '10.5'
|
||||||
- '10.6'
|
- '10.6'
|
||||||
- '10.7'
|
- '10.7'
|
||||||
|
- '11.2'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: docker/setup-qemu-action@v3
|
- uses: docker/setup-qemu-action@v3
|
||||||
|
@@ -177,6 +177,8 @@ is tagged correctly.
|
|||||||
* `ghcr.io/parkervcp/yolks:mariadb_10.6`
|
* `ghcr.io/parkervcp/yolks:mariadb_10.6`
|
||||||
* [`MariaDB 10.7`](/mariadb/10.7)
|
* [`MariaDB 10.7`](/mariadb/10.7)
|
||||||
* `ghcr.io/parkervcp/yolks: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)
|
### [MongoDB](/mongodb)
|
||||||
|
|
||||||
|
19
mariadb/11.2/Dockerfile
Normal file
19
mariadb/11.2/Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# -----------------------------------------------------
|
||||||
|
# MariaDB Image for Pterodactyl
|
||||||
|
# -----------------------------------------------------
|
||||||
|
FROM --platform=$TARGETOS/$TARGETARCH mariadb:11.2
|
||||||
|
|
||||||
|
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"]
|
Reference in New Issue
Block a user