- Install the official Docker Desktop application
- Pull the current Docker
blakserv
image from Docker Hub through the Docker Desktop interface
docker pull toko5/blakserv-1
- Run your
blakserv
Meridian 59 server by executing this command
docker run -dit -p 5959:5959 -p 9998:9998 --rm toko5/blakserv-1
- This starts a
container
from the downloadedblakserv
image - This automatically starts a Meridian 59 server with open ports
5959
and9998
- TCP
5959
is used by the Meridian client - TCP
9998
is a maintenance port that you can use to administrate the server with limited capability. - The
--rm
option means that the container will be deleted on shutdown. Nothing will be saved.
- TCP
- Create an account on the server either through a telnet session or using the built-in terminal within Docker
- Using Putty
- OR Using Docker Terminal
- you can use built-in commands to connect to the maintenance port from the container itself
- Open Containers then click on the randomly generated container name (in this example
crazy_heyrovsky
) - Click on
Terminal
to open a terminal session - Create a local connection to the maintenance port by typing the following
busybox-extras telnet localhost 9998
- Then paste in following commands to add a test user with account name test / password test
create automated test test
create user 3
- Configure your local Meridian 59 client to connect to localhost on port
5959
- the easiest way is to configure a shortcut to
meridian.exe
with the /H and /P flags set - example
- the easiest way is to configure a shortcut to
C:\Meridian59\run\localclient\meridian.exe /U:test /W:test /H:localhost /P:5959
You should now be able to log into your blakserv
Docker container server through your local Windows Meridian 59 client.