forked from pterodactyl/yolks
-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add mariadb 11.5 and 11.6 adds latest mariadb docker images * update workflow and readme * Fix readme --------- Co-authored-by: Quinten <[email protected]>
- Loading branch information
1 parent
7307926
commit 3590298
Showing
4 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# ----------------------------------------------------- | ||
# MariaDB Image for Pterodactyl | ||
# ----------------------------------------------------- | ||
FROM --platform=$TARGETOS/$TARGETARCH mariadb:11.5 | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
|
||
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# ----------------------------------------------------- | ||
# MariaDB Image for Pterodactyl | ||
# ----------------------------------------------------- | ||
FROM --platform=$TARGETOS/$TARGETARCH mariadb:11.6 | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
|
||
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"] |