Sign inSign up

stlalpha/vision2bbsres

By stlalpha

Updated over 4 years ago

Image
0

289

stlalpha/vision2bbsres repository overview

ViSiON/2 - The Resurrection

This image runs a telnettable ViSiON/2 - The Resurrection BBS server inside Docker.

It is based upon these really excellent works by JGoerzen:

This provides the full ViSiON/2 R1.0 setup in Drive G:

Install and Run (docker)

You can install with:

docker pull stlalpha/vision2bbsres

And run with:

docker run -d -p 5901:5901 -p 23:23 --name bbs-v2 stlalpha/vision2bbsres

Install and Run (docker-compose)

Save the following docker-compose.yml:


  ---
  version: "2.1"
  services:
   ViSiON-2:
     image: vision2bbsres
    container_name: bbs-v2
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/Chicago
      - VNCPASSWORD=muhbbspassword
    ports:
      - '23:23'
      - '5901:5901'
    restart: unless-stopped

And then...

bash$ docker-compose up -d

Accessing and general commands

The image runs a VNC console on port 5901/tcp. You can connect to this console with any VNC client, on the mac you can use "Screen Sharing" and point it at hostname:5901.

By default, each invocation will generate a new VNC password. To retrieve the current password, execute:

$ docker logs bbs-v2|grep password

You can set an environment variable "VNCPASSWORD" to otherwise set a static value, as above in the docker-compose.yml.

bash% export VNCPASSWORD=mypassword
bashg% docker run -d -p 5901:5901 -p 23:23 --name bbs-v2 stlalpha/vision2bbsres

Upon connecting to the

For more details, see the dos-bbs generic info

Installed Files

This image is built upon the extensive collection in jgoerzen/dos-bbs. Please see that page for details on DOS and the underlying configuration.

ViSiON2 itself is installed in G:\V2.

See the jgoerzen/dos-bbs documentation for more.

VNC console and telnet ports

Using a capable terminal package (I recommend netrunner or syncterm) - connect to your host on port 23. You should

The jgoerzen/dos-bbs docs describe this. Please refer to it.

More Information

adsasd

Source

This is prepared by John Goerzen [email protected] and the source can be found at https://github.com/jgoerzen/docker-bbs-renegade

Docker scripts, etc. are Copyright (c) 2017 John Goerzen All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Additional software copyrights as noted.

Tag summary

Content type

Image

Digest

Size

114.6 MB

Last updated

over 4 years ago

docker pull stlalpha/vision2bbsres