• Docker BBS Setup

    From Black Panther@1337:3/111 to Alterego on Thu Sep 24 20:37:24 2020
    Hey Deon,

    I figured we could bring this conversation into a Docker related area. :)

    So, if I'm looking at changing a Windoze computer over to Linux, it would probably be a good idea to create a docker image in a Linux container, and
    get that set up, have that run on a different computer, then change the OS on the physical computer, and continue to run the docker image on the new setup.

    Holy run-on sentence, Batman... ;)

    Let me start with, how do I start setting up the creation of my own image? Would I set everything up on my Linux computer, and then have it copy into
    the image? Or, does it need to be set up within the image?

    Sorry for the newbie questions here. I'm trying to get a handle on docker. :)


    ---

    Black Panther(RCS)
    aka Dan Richter
    Castle Rock BBS
    telnet://bbs.castlerockbbs.com
    http://www.castlerockbbs.com
    http://github.com/DRPanther
    The sparrows are flying again...

    --- Mystic BBS v1.12 A46 2020/08/25 (Linux/64)
    * Origin: Castle Rock BBS - bbs.castlerockbbs.com - (1337:3/111)
  • From alterego@1337:2/101 to Black Panther on Sun Sep 27 16:40:36 2020
    Re: Docker BBS Setup
    By: Black Panther to Alterego on Thu Sep 24 2020 08:37 pm

    Hey Dan!

    I figured we could bring this conversation into a Docker related area. :)

    Yup, good idea... :)

    So, if I'm looking at changing a Windoze computer over to Linux, it would
    probably be a good idea to create a docker image in a Linux
    container, and get that set up, have that run on a different computer,
    then change the OS on the physical computer, and continue to
    run the docker image on the new setup.

    Yup, good way to start - infact its the "developers" do stuff, ie: code and test on a laptop, and then deploy on the production server.
    Let me start with, how do I start setting up the creation of my own image?
































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































    Would I set everything up on my Linux computer, and then
    have it copy into the image? Or, does it need to be set up within the
    image?

    So in some respects, I would start with an existing image and get to know how that works. Yes, ultimately knowing how you can create your own image is a good
































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































    skill to have, but sometimes learning to walk before you run gets your further :)

    (As a point of fact, I generally use an existing image and only create my own images, when I want something a bit bespoke. Generally for common services - "rdbms", php services, web services, etc, I often use pre-built images from docker hub.)

    So, if you are wanting to run hpt/binkd, then I have an image ready to go. You can get it from registry.leenooks.net/bbs/fidohub:x86_64 (or armv7l for the Pi)
































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































    and then all you need to do is 'configure' those apps. I have a startup shell script that does all the right mapping (persistent storage, TCP ports, etc) - so all you would need to do is change it for your environment. EG: I have data on my docker containers on the Pi in /srv/docker/<app>/data - and the start script in /src/docker/<app>/go.sh. Then when you move to your new machine, you just install docker (if it isnt there yet), copy /srv/docker/<app> and run "go.sh" and you have moved.

    If you do want to build your own image, you can get my Dockerfile (the build receipe) and supporting addons from my gitlab http://dev.leenooks.net/bbs/fidohub. (You can look at the Dockerfile to see what is run to build the image - and its build with "docker build -t <a tagname> .")

    So, if you are wanting to run hpt/binkd in a docker image, I would start by pulling my image and playing with it. If you find it is missing things, or you want things added to the image, you can then extend it using my Dockerfile as an example.

    I can drop you my "go.sh" - its a little long here (because it is configured for all the ports that are needed for fido software).

    ...ëîåï

    ... All work and no play make Jack a dull boy and Jill a wealthy widow.
    --- SBBSecho 3.11-Linux
    * Origin: I'm playing with ANSI+videotex - wanna play too? (1337:2/101)
  • From alterego@1337:2/101 to Black Panther on Sun Sep 27 16:53:56 2020
    Re: Docker BBS Setup
    By: alterego to Black Panther on Sun Sep 27 2020 04:40 pm

    So, if you are wanting to run hpt/binkd in a docker image, I would start
    by pulling my image and playing with it. If you find it is
    missing things, or you want things added to the image, you can then extend
































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































    it using my Dockerfile as an example.

    So I thought I'd provide some steps and we can go from there:

    1. Install Docker
    That's fairly easy, and with a Linux distro installed (I use CentOS, Debian), you can do:

    curl -sSL https://get.docker.com | sudo sh

    And follow the output. I think from memory its pretty much automated, and the end result should be docker installed and running. A "docker info" should confirm it.

    2. Pull my image to play with:
    docker pull registry.leenooks.net/bbs/fidohub:latest-x86_64 (or armv7l if you doing a Pi).

    3. Run the image
    SRC=/srv/docker/fidohub

    # --rm \
    # MAC Address used because ip6= is not working
    docker run \
    -dt \
    --name=fidohub \
    -v ${SRC}/binkd:/etc/binkd \
    -v ${SRC}/ftn:/etc/ftn \
    -v ${SRC}/fido:/fido \
    -v ${SRC}/tools:/usr/local/tools \
    -v ${SRC}/log:/var/log/fido \
    registry.leenooks.net/bbs/fidohub:latest-x86_64

    (Change $SRC as appropriate)

    This will essentially run your container in the background, and it wont bind the ports on the host to the guest, you'll need -p <host>:<container> statements when you are ready.

    4. Now you can "docker exec -it fidohub bash" and you are inside the container,
































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































    and you can configure hpt/binkd as appropriate.

    Make sure:
    HPT is configured under /etc/ftn
    BINKP is configured under /etc/binkd
    Both HPT/BINKP store their data (incoming/outgoing/mailboxes/files, etc) under /fido
    Both HPT/BINKP store the logs in /var/log/fido/
    Any scripts you have are stored in /usr/local/tools

    Then as you stop/start/destroy/recreate the container, that data will persist.

    This should get you started...

    ...ëîåï

    ... We should weep for men at their birth, not their death.
    --- SBBSecho 3.11-Linux
    * Origin: I'm playing with ANSI+videotex - wanna play too? (1337:2/101)
  • From Bucko@1337:3/102 to Black Panther on Sun Sep 27 07:39:39 2020
    Keep this discussion going guys, I am very interested in Docker Images for a project I am doing with a Commodore Emulator...

    --- Mystic BBS v1.12 A46 2020/08/26 (Windows/32)
    * Origin: The Wrong Number Family Of BBS' - Wrong Number ][ (1337:3/102)
  • From Louis Northmore@1337:1/107 to Black Panther on Sun Sep 27 14:44:58 2020
    Hey!

    This is apt, I've just spent a few days this week moving over my systems to Docker too.
    I came across a few of Deons images and they were very useful.

    I have a number of containers setup now with a few shared volumes between them. This is such a versatile setup with a separate container for binkd,husky,nginx,php,
    GoldED and finally a couple of BBS containers (mystic,WWIV & ENigma) which "read" the
    shared msgbases in the FTN volume.

    This is all working on my development system at the moment but seems rock solid.
    I love just execing into the GoldED container or the Mystic container to do the

































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































    relevant tasks.

    Let us know how you get on Dan - super interested in this stuff.

    ---
    Satchmo





    --- webJAM v0.1.3
    * Origin: Sonic BBS :: www.sonicbbs.co.uk :: Beverley, UK (1337:1/107)
  • From Black Panther@1337:3/111 to alterego on Sun Sep 27 14:29:30 2020
    On 27 Sep 2020, alterego said the following...

    So I thought I'd provide some steps and we can go from there:

    Thank you. I probably should walk before I run with this.

    I thought you might have been ignoring me, but it looks like the connection between here and tqwNet wasn't working for a couple days. :)

    1. Install Docker

    I've got it installed on my production computer right now.

    2. Pull my image to play with:
    docker pull registry.leenooks.net/bbs/fidohub:latest-x86_64 (or armv7l
    if you doing a Pi).

    I'll work on this when I get a chance.

    Just to verify, a docker image is not dependent on the systems os. The reason I'm asking, is I'll be working on getting this running on Manjaro, but will probably set up the hub system to run Debian. If I remember correctly, that will not be an issue, but wanted to double check.

    SRC=/srv/docker/fidohub

    -v ${SRC}/binkd:/etc/binkd \
    -v ${SRC}/ftn:/etc/ftn \
    -v ${SRC}/fido:/fido \
    -v ${SRC}/tools:/usr/local/tools \
    -v ${SRC}/log:/var/log/fido \

    So all of these paths will be persistent, and outside of the container?

    Sorry for all the newbie questions...


    ---

    Black Panther(RCS)
    aka Dan Richter
    Castle Rock BBS
    telnet://bbs.castlerockbbs.com
    http://www.castlerockbbs.com
    http://github.com/DRPanther
    The sparrows are flying again...

    --- Mystic BBS v1.12 A46 2020/08/25 (Linux/64)
    * Origin: Castle Rock BBS - bbs.castlerockbbs.com - (1337:3/111)
  • From Black Panther@1337:3/111 to Louis Northmore on Sun Sep 27 14:31:22 2020
    On 27 Sep 2020, Louis Northmore said the following...

    This is apt, I've just spent a few days this week moving over my systems to Docker too.
    I came across a few of Deons images and they were very useful.

    I haven't done anything yet with actual images in docker. I've done the tutorials, like hello-world, web server, etc... For some reason, this is
    taking a bit to wrap my head around...


    ---

    Black Panther(RCS)
    aka Dan Richter
    Castle Rock BBS
    telnet://bbs.castlerockbbs.com
    http://www.castlerockbbs.com
    http://github.com/DRPanther
    The sparrows are flying again...

    --- Mystic BBS v1.12 A46 2020/08/25 (Linux/64)
    * Origin: Castle Rock BBS - bbs.castlerockbbs.com - (1337:3/111)
  • From alterego@1337:2/101 to Black Panther on Mon Sep 28 08:45:54 2020
    Re: Re: Docker BBS Setup
    By: Black Panther to alterego on Sun Sep 27 2020 02:29 pm

    Howdy,

    I thought you might have been ignoring me, but it looks like the connection between here and tqwNet wasn't working for a couple days. :)

    Yeah, thats the only bummer with Fido - is that you dont know if your messages got received by the other end, and sometimes you wait for a reply that will never come... Would love to fix that somehow ...

    Just to verify, a docker image is not dependent on the systems os. The reason I'm asking, is I'll be working on getting this running on Manjaro, but will probably set up the hub system to run Debian. If I remember correctly, that will not be an issue, but wanted to double check.

    Right.

    I move containers all the time between my MAC, CentOS and Debian. One of the values is that it doesnt matter what the host is running, because the container
































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































    has everything it needs inside it to run.

    I've only ever had 1 strange problem, moving an Intel container from an Intel PC to a APU1D (running an AMD processor) - and the app kept segfaulting with SIGILL. In that case I had to rebuild (which resulted in recompiling the app) and then it ran fine.

    So, another benefit of Docker, if you do rebuild - the "recipe" to rebuild is in the "Dockerfile" - so very little needs to change (if any) - the build command is "docker build". I do this all the time as well, testing my "building" on an Intel (because its super fast - and sometimes on my MAC), and then once the container build fine (expecially if it involves compiling something), I then build it on the Pi (which is sloooower!).

    As an example, my Synchronet takes about 5mins (full build) on the Intel and over an hour on the Pi - and its the same Dockerfile (minus dosemu items).

    So all of these paths will be persistent, and outside of the container?
    SRC=/srv/docker/fidohub

    Yes, so if $SRC is a real directory on the host (can be /mnt/a on machine 1, and /mnt/b on machine 2), inside the container:

    -v ${SRC}/binkd:/etc/binkd \

    /etc/binkd still has binkd's config and the container doesnt know that a) its a
































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































    container, and b) where the files are stored on the host.

    BTW: Leave those dirs empty in the start, and the container will pre-populate them with a default config (that does need to be tweaked) - but enough to get you started.

    If you want to chat live with help, find me on matrix, you can sign up to my matrix.leenooks.net server, or use matrix.org. I'm @deon:matrix.leenooks.net

    You can use a matrix client (I use element), or https://app.element.io

    ...ëîåï

    ... Anyone can get old. All you have to do is live long enough.
    --- SBBSecho 3.11-Linux
    * Origin: I'm playing with ANSI+videotex - wanna play too? (1337:2/101)
  • From paulie420@1337:3/129 to Bucko on Sun Sep 27 20:53:55 2020
    Keep this discussion going guys, I am very interested in Docker Images
    for a project I am doing with a Commodore Emulator...

    Same, samesies.



    |07p|15AULIE|1142|07o
    |08.........

    --- Mystic BBS v1.12 A45 2020/02/18 (Raspberry Pi/32)
    * Origin: 2o fOr beeRS bbs>>>20ForBeers.com:1337 (1337:3/129)
  • From alterego@1337:2/101 to Bucko on Tue Sep 29 00:02:45 2020
    Re: Re: Docker BBS Setup
    By: Bucko to Black Panther on Sun Sep 27 2020 07:39 am

    Keep this discussion going guys, I am very interested in Docker Images for































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































    a project I am doing with a Commodore Emulator...

    I have DOSEMU running in a container, running my 1995 BBS with Portal of Power :)

    ...ëîåï

    ... Half Moon tonight. (At least its better than no Moon at all.)
    --- SBBSecho 3.11-Linux
    * Origin: I'm playing with ANSI+videotex - wanna play too? (1337:2/101)
  • From alterego@1337:2/101 to Black Panther on Tue Sep 29 00:06:48 2020
    Re: Re: Docker BBS Setup
    By: Black Panther to Louis Northmore on Sun Sep 27 2020 02:31 pm

    I haven't done anything yet with actual images in docker. I've done the
    tutorials, like hello-world, web server, etc... For some
    reason, this is
    taking a bit to wrap my head around...

    When the penny drops, (and it will), I'm sure you'll see the value in docker.

    I certainly had no interest in it initially, and then I kept seeing it talked about (since I work in IT) and forced myself to figure it out. Once I did, I havent looked back, and I put everything in a container if I can.

    My "computers" (aka hosts), have gone from fat Linux machines, to dumb linux machines (that I can blow away and rebuild in a heart beat), and my apps (in docker containers) float between them automatically... Its pretty cool.

    ...ëîåï

    ... The truth is NOT always dressed for the evening.
    --- SBBSecho 3.11-Linux
    * Origin: I'm playing with ANSI+videotex - wanna play too? (1337:2/101)
  • From Black Panther@1337:3/111 to alterego on Mon Sep 28 13:45:46 2020
    On 27 Sep 2020, alterego said the following...

    1. Install Docker
    That's fairly easy, and with a Linux distro installed (I use CentOS, Debian), you can do:

    That's already installed.

    2. Pull my image to play with:
    docker pull registry.leenooks.net/bbs/fidohub:latest-x86_64 (or armv7l
    if you doing a Pi).

    Had an error on this one:

    docker pull registry.leenooks.net/fidohub:latest-x86_64
    Error response from daemon: Get https://registry.leenooks.net/v2/fidohub/manifests/latest-x86_64:
    denied: access forbidden


    ---

    Black Panther(RCS)
    aka Dan Richter
    Castle Rock BBS
    telnet://bbs.castlerockbbs.com
    http://www.castlerockbbs.com
    http://github.com/DRPanther
    The sparrows are flying again...

    --- Mystic BBS v1.12 A46 2020/08/25 (Linux/64)
    * Origin: Castle Rock BBS - bbs.castlerockbbs.com - (1337:3/111)
  • From Bucko@1337:3/102 to alterego on Mon Sep 28 18:58:33 2020
    On 29 Sep 2020, alterego said the following...


    I have DOSEMU running in a container, running my 1995 BBS with Portal of Power :)


    Actually, what I am looking to do is create a container with the Commodore Emulator Vice setup to run the Commodore BBS which I and another programmer
    are about to release an update to.. The Image BBS for the C64 we released
    v2.0 back in Dec 18. I at the time created what I called BBS on a Stick, you could run the BBS from a USB Stick on any computer. All you would need to do
    is forward the fqtn to the correct ip address.. We are about to release the update to Image BBS v3.0 and I am doing the same thing with the BBS On a
    Stick, except this time I want to do something like it in Linux. So a
    Container might be the way to go. I could completely set up everything and
    the SysOp would only have to pull up the container and set his IP address again.. We'll see how it goes..

    --- Mystic BBS v1.12 A46 2020/08/26 (Windows/32)
    * Origin: The Wrong Number Family Of BBS' - Wrong Number ][ (1337:3/102)
  • From alterego@1337:2/101 to Black Panther on Tue Sep 29 09:09:31 2020
    Re: Re: Docker BBS Setup
    By: Black Panther to alterego on Mon Sep 28 2020 01:45 pm

    2. Pull my image to play with:
    docker pull registry.leenooks.net/bbs/fidohub:latest-x86_64 (or
    armv7l if you doing a Pi).

    Had an error on this one:

    docker pull registry.leenooks.net/fidohub:latest-x86_64
    Error response from daemon: Get https://registry.leenooks.net/v2/fidohub/manifests/latest-x86_64:
    denied: access forbidden

    Hmmm... This should work, I have my registry public.

    In fact, I just installed it on my new Pi 4 without needing auth... I'm confused, I'll need to see if I can find some logs.

    ...ëîåï

    ... Winning isn't the end of the world.
    --- SBBSecho 3.11-Linux
    * Origin: I'm playing with ANSI+videotex - wanna play too? (1337:2/101)
  • From alterego@1337:2/101 to Bucko on Tue Sep 29 09:11:40 2020
    Re: Re: Docker BBS Setup
    By: Bucko to alterego on Mon Sep 28 2020 06:58 pm

    you would need to do is forward the fqtn to the correct ip address.. We are about to release the update to Image BBS v3.0 and I am doing the same thing with the BBS On a Stick, except this time I want to do something like it in Linux. So a Container might be the way to go. I could completely set up everything and the SysOp would only have to pull up the container and set his IP address again.. We'll see how it goes..

    It should be completely doable. If you can get Ezycom running in a docker container (which is what I have) with Portal of Power, this should be a sinch as well.

    Yell out if you get stuck, I'm happy to help where I can..

    ...ëîåï

    ... Any club that would accept me as a member, I wouldn't want to join.
    --- SBBSecho 3.11-Linux
    * Origin: I'm playing with ANSI+videotex - wanna play too? (1337:2/101)
  • From alterego@1337:2/101 to Black Panther on Tue Sep 29 09:18:31 2020
    Re: Re: Docker BBS Setup
    By: Black Panther to alterego on Mon Sep 28 2020 01:45 pm

    Hey BP,

    Had an error on this one:
    docker pull registry.leenooks.net/fidohub:latest-x86_64

    Wow, this triped me up as well.

    The URL is registry.leenooks.net/bbs/fidohub:latest-x86_64

    (You missed the /bbs/ in the URL :)

    ...ëîåï

    ... The house of Lords is the British Outer Mongolia for retired politicians. --- SBBSecho 3.11-Linux
    * Origin: I'm playing with ANSI+videotex - wanna play too? (1337:2/101)
  • From Black Panther@1337:3/111 to alterego on Mon Sep 28 17:36:00 2020
    On 29 Sep 2020, alterego said the following...

    docker pull registry.leenooks.net/fidohub:latest-x86_64

    Wow, this triped me up as well.

    The URL is registry.leenooks.net/bbs/fidohub:latest-x86_64

    (You missed the /bbs/ in the URL :)

    DOH! <smack> Now it's working... ;)


    ---

    Black Panther(RCS)
    aka Dan Richter
    Castle Rock BBS
    telnet://bbs.castlerockbbs.com
    http://www.castlerockbbs.com
    http://github.com/DRPanther
    The sparrows are flying again...

    --- Mystic BBS v1.12 A46 2020/08/25 (Linux/64)
    * Origin: Castle Rock BBS - bbs.castlerockbbs.com - (1337:3/111)
  • From Black Panther@1337:3/111 to alterego on Mon Sep 28 19:31:10 2020
    On 28 Sep 2020, alterego said the following...

    BTW: Leave those dirs empty in the start, and the container will pre-populate them with a default config (that does need to be tweaked) - but enough to get you started.

    Boy do they need to be tweaked... :) Luckily, I still had the fidoconfig and binkd.cfg from Hub 4. I just need to go through and change all of the paths, and create directories. That's gonna take me a bit. :)


    ---

    Black Panther(RCS)
    aka Dan Richter
    Castle Rock BBS
    telnet://bbs.castlerockbbs.com
    http://www.castlerockbbs.com
    http://github.com/DRPanther
    The sparrows are flying again...

    --- Mystic BBS v1.12 A46 2020/08/25 (Linux/64)
    * Origin: Castle Rock BBS - bbs.castlerockbbs.com - (1337:3/111)
  • From alterego@1337:2/101 to Black Panther on Tue Sep 29 12:03:17 2020
    Re: Re: Docker BBS Setup
    By: Black Panther to alterego on Mon Sep 28 2020 07:31 pm

    Boy do they need to be tweaked... :) Luckily, I still had the fidoconfig
    and binkd.cfg from Hub 4. I just need to go through and change all of the paths, and create directories. That's gonna take me a bit. :)

    Yeah, they are probably the distro defaults.

    BTW: That images has a few more goodies:
    * Zerotier
    * QICO (for EMSI)
    * JamNNTPD
    * GoldED

    So if you want to use any of those components, you'll need to have "-v" mounts for their configs, so that they are persistent on the host. (And I think I mentioned, I put all my tools in /usr/local/tools - there should be a -v mount for that too).

    My binkd tree looks like this:
    binkd/
    binkd/binkd.conf-dist
    binkd/binkd.conf
    binkd/binkd.inc
    binkd/binkd.nodes.tqwnet
    binkd/binkd.nodes.sportnet
    binkd/binkd.cfg
    binkd/binkd.nodes
    binkd/binkd.pass
    binkd/binkd.nodes.fsxnet
    binkd/binkd.nodes.micronet

    And my HPT path looks like this:
    ftn/
    ftn/config.route
    ftn/areastat.conf
    ftn/config
    ftn/config.packer
    ftn/net
    ftn/net/tqwnet
    ftn/net/tqwnet/nodes
    ftn/net/tqwnet/nodelist
    ftn/net/tqwnet/areas
    ftn/net/tqwnet/route
    ftn/net/sportnet/...
    ftn/net/micronet/...
    ftn/net/videotex/...
    ftn/net/happynet/...
    ftn/net/gamenet/...

    ...ëîåï

    ... If I had been the Virgin Mary, I would have said No.
    --- SBBSecho 3.11-Linux
    * Origin: I'm playing with ANSI+videotex - wanna play too? (1337:2/101)
  • From MeaTLoTioN@1337:1/101 to Black Panther on Tue Sep 29 17:02:56 2020
    On 28 Sep 2020, Black Panther said the following...

    On 27 Sep 2020, alterego said the following...

    1. Install Docker
    That's fairly easy, and with a Linux distro installed (I use CentOS, Debian), you can do:

    That's already installed.

    2. Pull my image to play with:
    docker pull registry.leenooks.net/bbs/fidohub:latest-x86_64 (or armv7 if you doing a Pi).

    Had an error on this one:

    docker pull registry.leenooks.net/fidohub:latest-x86_64
    Error response from daemon: Get https://registry.leenooks.net/v2/fidohub/manifests/latest-x86_64:
    denied: access forbidden

    Dan,

    I think you missed the `/bbs/` part of the url off...

    you said you did:
    docker pull registry.leenooks.net/fidohub:latest-x86_64

    deon said to do:
    docker pull registry.leenooks.net/bbs/fidohub:latest-x86_64
    ^^^

    See if that works?

    ---
    |14Best regards,
    |11Ch|03rist|11ia|15n |11a|03ka |11Me|03aTLoT|11io|15N

    |07ÄÄ |08[|10eml|08] |15ml@erb.pw |07ÄÄ |08[|10web|08] |15www.erb.pw |07ÄÄÄ¿ |07ÄÄ |08[|09fsx|08] |1521:1/158 |07ÄÄ |08[|11tqw|08] |151337:1/101 |07ÂÄÄÙ |07ÄÄ |08[|12rtn|08] |1580:774/81 |07ÄÂ |08[|14fdn|08] |152:250/5 |07ÄÄÄÙ
    |07ÄÄ |08[|10ark|08] |1510:104/2 |07ÄÙ

    --- Mystic BBS v1.12 A43 2019/03/02 (Linux/64)
    * Origin: thE qUAntUm wOrmhOlE, rAmsgAtE, uK. bbs.erb.pw (1337:1/101)
  • From MeaTLoTioN@1337:1/101 to MeaTLoTioN on Tue Sep 29 17:06:23 2020
    On 29 Sep 2020, MeaTLoTioN said the following...

    On 28 Sep 2020, Black Panther said the following...

    On 27 Sep 2020, alterego said the following...

    1. Install Docker
    That's fairly easy, and with a Linux distro installed (I use Cen Debian), you can do:

    That's already installed.

    2. Pull my image to play with:
    docker pull registry.leenooks.net/bbs/fidohub:latest-x86_64 (or if you doing a Pi).

    Had an error on this one:

    docker pull registry.leenooks.net/fidohub:latest-x86_64
    Error response from daemon: Get https://registry.leenooks.net/v2/fidohub/manifests/latest-x86_64: denied: access forbidden

    Dan,

    I think you missed the `/bbs/` part of the url off...

    you said you did:
    docker pull registry.leenooks.net/fidohub:latest-x86_64

    deon said to do:
    docker pull registry.leenooks.net/bbs/fidohub:latest-x86_64
    ^^^

    See if that works?

    Sorry, I replied to that in the order I read the messages, and literally the next message or so after I see you discovered your typo so ignore this lol.

    ---
    |14Best regards,
    |11Ch|03rist|11ia|15n |11a|03ka |11Me|03aTLoT|11io|15N

    |07ÄÄ |08[|10eml|08] |15ml@erb.pw |07ÄÄ |08[|10web|08] |15www.erb.pw |07ÄÄÄ¿ |07ÄÄ |08[|09fsx|08] |1521:1/158 |07ÄÄ |08[|11tqw|08] |151337:1/101 |07ÂÄÄÙ |07ÄÄ |08[|12rtn|08] |1580:774/81 |07ÄÂ |08[|14fdn|08] |152:250/5 |07ÄÄÄÙ
    |07ÄÄ |08[|10ark|08] |1510:104/2 |07ÄÙ

    --- Mystic BBS v1.12 A43 2019/03/02 (Linux/64)
    * Origin: thE qUAntUm wOrmhOlE, rAmsgAtE, uK. bbs.erb.pw (1337:1/101)
  • From Bucko@1337:3/102 to alterego on Tue Sep 29 13:08:42 2020

    It should be completely doable. If you can get Ezycom running in a docker container (which is what I have) with Portal of Power, this should be a sinch as well.

    Yell out if you get stuck, I'm happy to help where I can..


    Thanks, Appreciate the offer...

    AL

    --- Mystic BBS v1.12 A46 2020/08/26 (Windows/32)
    * Origin: The Wrong Number Family Of BBS' - Wrong Number ][ (1337:3/102)
  • From Black Panther@1337:3/111 to MeaTLoTioN on Tue Sep 29 14:21:18 2020
    On 29 Sep 2020, MeaTLoTioN said the following...

    I think you missed the `/bbs/` part of the url off...

    Yup... Deon pointed out that I missed that part... Trying to type faster than the brain can comprehend... ;)


    ---

    Black Panther(RCS)
    aka Dan Richter
    Castle Rock BBS
    telnet://bbs.castlerockbbs.com
    http://www.castlerockbbs.com
    http://github.com/DRPanther
    The sparrows are flying again...

    --- Mystic BBS v1.12 A46 2020/08/25 (Linux/64)
    * Origin: Castle Rock BBS - bbs.castlerockbbs.com - (1337:3/111)
  • From Black Panther@1337:3/111 to MeaTLoTioN on Tue Sep 29 14:28:20 2020
    On 29 Sep 2020, MeaTLoTioN said the following...

    Sorry, I replied to that in the order I read the messages, and literally the next message or so after I see you discovered your typo so ignore
    this lol.

    If it were only that simple to ignore it... ;)

    I think we've all done that. :)


    ---

    Black Panther(RCS)
    aka Dan Richter
    Castle Rock BBS
    telnet://bbs.castlerockbbs.com
    http://www.castlerockbbs.com
    http://github.com/DRPanther
    The sparrows are flying again...

    --- Mystic BBS v1.12 A46 2020/08/25 (Linux/64)
    * Origin: Castle Rock BBS - bbs.castlerockbbs.com - (1337:3/111)