Mystic BBS (Bulletin Board Software). This is a docker container ready to run. Mystic's main website is http://mysticbbs.com
This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Deon George 32c5348864 Fixed timezone for Mystic 2019-06-21 17:15:22 +10:00
cleaninstall Update to 1.12A43 added ZeroTier 2019-04-07 23:03:49 +10:00
.dockerignore Updated apt url, trigger rebuild 2018-08-30 13:22:10 +10:00
.gitlab-ci.yml Version update for .gitlab-ci 2019-04-07 23:37:19 +10:00
Dockerfile Fixed timezone for Mystic 2019-06-21 17:15:22 +10:00
Makefile Initial Release - for Mystic BBS 1.1.12a39 2018-08-24 13:57:25 +10:00
README.md Update to stretch 2018-08-27 00:30:33 +10:00
init Update to 1.12A43 added ZeroTier 2019-04-07 23:03:49 +10:00
mystic.tar.gz Update to 1.12A43 added ZeroTier 2019-04-07 23:03:49 +10:00
zt-gpg-key Update to 1.12A43 added ZeroTier 2019-04-07 23:03:49 +10:00

README.md

Mystic BBS (Bulletin Board Software)


What is Mystic BBS?

see MysticBBS

Mystic BBS was conceived around the year 1995 when the author became frustrated by the lack of customization available with Renegade BBS, and first released to the public in late 1997 during a period when many BBS packages were seeing a decline (or a full stop) in development. Mystic is developed from the ground up with all original source code and is intended to be the spiritual successor to both Telegard and Renegade (two of the packages the author used prior to developing Mystic BBS).

With the fall of MS-DOS and the decline of the BBS, Mystic continued to push forward by releasing an OS/2 and Windows 32 native version in 1998. Mystic was the first of the non-commerical DOS based BBS packages to make the transition and integrate directly with the Telnet protocol. Mystic also went on to become the first of the MS-DOS based packages to release a native Linux version in 1999, and the first to introduce a standardized platform for DOOR games across all 4 operating systems.

In the following years after the first MS-DOS release in 1997, Mystic grew to become one of the most widely used BBS packages. Popular amongst many SysOps who took ease of customization and the user experience seriously, it is arguable that Mystic was (or even still is) the most popular BBS software for those who share a common interest in ANSI art and BBS modding.

In recent years, Mystic has removed its DOS version and its limitations, and has moved on to better integrate with Internet protocols. Mystic now has internal Telnet, RLOGIN, SSH, NNTP, POP3, SMTP, FTP, HTTP and BINKP servers while continuing to focus on and enhance the SysOp and user experience.


About this Docker Container

This Docker Container represents a completed installation of MysticBBS. It is ready to configure and personalise.

To use this container:

  1. Docker pull it from my registry. (Actually you can skip this step, but its worth doing it anyway!)

     docker pull registry.leenooks.net/leenooks/mysticbbs:1.12a39-armv7l
    
  2. Create a directory to hold your BBS data. (I use /srv/docker/mystic).

     mkdir -p /srv/mystic/data
    
  3. Start the container.

     docker run -itd -v /srv/mystic/data:/mystic/data -p 10022:22 -p 10023:23 -p 24554:24554 registry.leenooks.net/leenooks/mysticbbs:1.12a39-armv7l
    

    Explanation of these parameters:

    Parameter Value
    -d Detached mode: run the container in the background and print the new container ID.
    -i Keep STDIN open even if not attached. (required)
    -n Give your container a specific name. (optional)
    -p Map host ports to container ports. (may be required, otherwise recommended)
    -t Allocate a pseudo-TTY. (required)
    -v Map a path on the host into the container (optional but recommended).

    (There are other useful parameters you can use, like --restart, etc. If you dont pass in a data volume for /mystic/data, docker will create one and preserve it if you start subsequent containers a specific way (beyond the scope of this README - so its recommended you do this in first instance anyway.)

    Remember your container ID (your number will be different).

     ca219a461376...
    
  4. Attach to your container and create your sysop user.

     docker exec -it ca219a461376 ./mystic -l
    
  5. Upgrade your new user to sysop levels

     docker exec -it ca219a461376 ./mystic -cfg
    
  6. You can now start to play. If you externalised your telnet port, then you can telnet in.

If you want to monitor your container, or stop it, attach to the console with:

docker attach ca219a461376

You can also run this in a swarm (I do)!


Extras Container

There is an "extras" container with some additional MysticBBS mods pre-installed. You'll find info on that in the armv7l-extras branch.