Added Game Double Up! 1.0, Utility BLAM 2.0

This commit is contained in:
Deon George 2018-08-27 20:49:31 +10:00
parent bdf690fd89
commit a9a02bb395
5 changed files with 38 additions and 32 deletions

View File

@ -33,11 +33,11 @@ build:
stage: build stage: build
script: script:
- if [ -f init ]; then chmod 500 init; fi - if [ -f init ]; then chmod 500 init; fi
- docker pull ${CI_REGISTRY_IMAGE}:${CACHETAG} || true # docker pull ${CI_REGISTRY_IMAGE}:${CACHETAG} || true
- docker build --cache-from ${CI_REGISTRY_IMAGE}:${CACHETAG} -t ${CI_REGISTRY_IMAGE}:${VERSION} -t ${CI_REGISTRY_IMAGE}:${CACHETAG} . - docker build --cache-from ${CI_REGISTRY_IMAGE}:${CACHETAG} -t ${CI_REGISTRY_IMAGE}:${VERSION} -t ${CI_REGISTRY_IMAGE}:${CACHETAG} .
- docker push ${CI_REGISTRY_IMAGE}:${VERSION} - docker push ${CI_REGISTRY_IMAGE}:${VERSION}
- docker push ${CI_REGISTRY_IMAGE}:${CACHETAG} # docker push ${CI_REGISTRY_IMAGE}:${CACHETAG}
tags: tags:
- docker - docker
only: only:
- x86_64 - /^x86_64-.*/

View File

@ -1,31 +1,26 @@
# NAME leenooks/mysticbbs # NAME leenooks/mysticbbs
# VERSION 1.12a39-x86_64 # VERSION 1.12a39-x86_64-extras
FROM debian:stretch-slim FROM registry.leenooks.net/leenooks/mysticbbs:1.12a39-x86_64
MAINTAINER Deon George <deon@leenooks.net> ## Add Mystic Mods
# Game DBLup - Double-Up! v1.0
RUN SOURCE_URL=http://yum.leenooks.net/bbs/MysticBBS/mods && FILE=DBLUP10.ZIP && \
cd /tmp && \
curl -O ${SOURCE_URL}/${FILE} && \
unzip ${FILE} && \
cd /mystic/ && \
mv /tmp/sysop.txt docs/mod-dblup-1.0-sysop.txt && \
mv /tmp/doubleup.mps scripts/ && cd scripts && ./mplc doubleup.mps && \
rm -rf /tmp/**
# Pre-requisites # Utility BLAM - BBS List Admin Manager v2.1
RUN apt-get update \ RUN SOURCE_URL=http://yum.leenooks.net/bbs/MysticBBS/mods && FILE=GYBLAM21.ZIP && \
&& apt-get install -yqq unzip zip curl libhunspell-dev \ cd /tmp && \
&& rm -rf /var/lib/apt/lists/* /tmp/* curl -O ${SOURCE_URL}/${FILE} && \
unzip ${FILE} && \
# For SSH connections and Spell cd /mystic/ && \
ADD libcl.so.3.4.3 /usr/lib mv /tmp/sysop.txt docs/mod-blam-2.1-sysop.txt && \
RUN ln -sf libcl.so.3.4.3 /usr/lib/libcl.so mv /tmp/gy-blam.ini docs/mod-blam-2.1-gy-blam.ini && \
RUN ln -sf /usr/lib/x86_64-linux-gnu/libhunspell-1.3.so /usr/lib/libhunspell.so mv /tmp/gy-blam.mps scripts/ && cd scripts && ./mplc gy-blam.mps && \
rm -rf /tmp/**
RUN ln -sf /usr/share/zoneinfo/Australia/Melbourne /etc/localtime
WORKDIR /mystic
ENV mysticbbs /mystic/data
EXPOSE 22 23 24554
COPY init /sbin/init
ENTRYPOINT [ "/sbin/init" ]
CMD [ "start" ]
ADD mystic.tar.gz /
VOLUME ["/mystic/data"]
# Add Mystic Mods

View File

@ -63,5 +63,16 @@ If you want to monitor your container, or stop it, attach to the console with:
You can also run this in a swarm (I do)! You can also run this in a swarm (I do)!
---- ----
## Extras Container ## Info on the Images
There is an "extras" container with some additional MysticBBS mods pre-installed. You'll find info on that in the [x86_64-extras](https://dev.leenooks.net/leenooks/mysticbbs/blob/x86_64-extras/README.md#info-on-the-images) branch.
### leenooks/mysticbbs:1.12a39-armv7l (Branch: armv7l)
This image is a clean install of Mystic BBS v1.12a39. It is ready for you to configure and personalise.
### leenooks/mysticbbs:1.12a39-armv7l-extras (Branch: armv7l-extras)
This image is based on the above image, with the follow additional games/tools installed. You'll need to refer to the documentation in the docs/ directory (inside the container) for details on how to configure these mods. The docs are named `mod-<NAME OF MOD>-...`
| Category | Name | Description |
| :- | :- | :- |
| Game | Double Up | Double Up! for Mystic V1.0 by Darryl Perry |
| Utility | BLAM | BBS List Admin Manager for Mystic v2.0 by Darryl Perry |

Binary file not shown.

Binary file not shown.