39 lines
1.4 KiB
Docker
39 lines
1.4 KiB
Docker
# NAME leenooks/mysticbbs
|
|
# VERSION 1.12a39-armv7l-extras
|
|
|
|
FROM registry.leenooks.net/leenooks/mysticbbs:1.12a39-armv7l
|
|
|
|
# Makenl 3.4.6
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends --allow-unauthenticated -yqq makenl \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* #1
|
|
|
|
## Add Mystic Mods
|
|
# Game DBLup - Double-Up! v1.0
|
|
RUN SOURCE_URL=https://chinwag.leenooks.net/mods && FILE=DBLUP10.ZIP && \
|
|
cd /tmp && \
|
|
curl -O ${SOURCE_URL}/${FILE} && \
|
|
unzip ${FILE} && \
|
|
cd /mystic/ && \
|
|
chmod 644 /tmp/*.txt /tmp/*.mps && mv /tmp/sysop.txt docs/mod-dblup-1.0-sysop.txt && \
|
|
mv /tmp/doubleup.mps scripts/ && cd scripts && ./mplc doubleup.mps && \
|
|
rm -rf /tmp/**
|
|
|
|
# Utility BLAM - BBS List Admin Manager v2.1
|
|
RUN SOURCE_URL=https://chinwag.leenooks.net/mods && FILE=GYBLAM21.ZIP && \
|
|
cd /tmp && \
|
|
curl -O ${SOURCE_URL}/${FILE} && \
|
|
unzip ${FILE} && \
|
|
cd /mystic/ && \
|
|
chmod 644 /tmp/*.txt /tmp/*.ini /tmp/*.mps && mv /tmp/sysop.txt docs/mod-blam-2.1-sysop.txt && \
|
|
mv /tmp/gy-blam.ini docs/mod-blam-2.1-gy-blam.ini && \
|
|
mv /tmp/gy-blam.mps scripts/ && cd scripts && ./mplc gy-blam.mps && \
|
|
rm -rf /tmp/**
|
|
|
|
# Game Galactic Dynasty 0.9.1-dev
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends --allow-unauthenticated -yqq galacticdynasty \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* \
|
|
&& cd /mystic/docs && mkdir -p doors && cp -pR /usr/local/door/galacticdynasty doors/ \
|
|
&& mv doors/galacticdynasty/linmyst.txt mod-galacticdynasty-0.9.1-linmyst.txt
|