Sign inSign up

rbanffy/vm370ce

By rbanffy

•Updated 3 days ago

Image
1

8.9K

rbanffy/vm370ce repository overview

⁠vm370

Docker Pulls GitHub

This repo contains the files needed to build the Docker image for rbanffy/vm370.

Screenshot

⁠Building the image

By default, we'll build the VM370 Six Pack image. To build it, run:

docker build -t vm370 .

To run the image you just built on an amd64 computer, use:

docker run -it -p 3270:3270 -p 8081:8081 $USER/vm370:latest-amd64

At this point, you can connect your terminals to localhost on port 3278. To get to the web console, connect to http://localhost:8081⁠ using the credentials for the MAINT user (as published in the Sixpack documentation).

⁠Building an image with other OSs

By default we'll build based on Dockerfile-vm370. To select other Dockerfiles, set the variable OPERATING_SYSTEM.

OPERATING_SYSTEM=vm370ce make build

⁠Running from Docker Hub

To run the VM370 Six Pack image without building it locally, use:

docker run -it -p 3270:3270 -p 8081:8081 rbanffy/vm370

MVS Tk4- uses port 8038 for the web console:

docker run -it -p 3270:3270 -p 8038:8038 rbanffy/mvstk4

⁠Deploying it to a Docker Swarm

This image is intended to run as a service on a cluster. To create a vm370 service on your cluster, run:

docker service create --name vm370 --publish 3270:3270 --publish 8081:8081 rbanffy/vm370

When the service is up and running, connecting a 3270 session to any node will get you to the VM370 welcome screen.

⁠A warning

The web-based Hercules console is not working properly for the VM370 images at the moment, but work correctly with MVS 3.8 Tk4- on port 8038.

A more serious issue is that data is not persisted beyond the life of the container, or when the workload is moved to a new node. Use it at your own peril (and, if you know how, help improving it).

⁠About the environments

⁠VM370 SixPack and VM370ce

These are VM/370 systems with numerous improvements, fixes, and extras. VM370ce is newer and has more functionality.

Both come preconfigured with multiple users:

UseridDescriptionPassword
CMSUSERNormal userCMSUSER
MAINTMaintenance userCPCMS
OPERATOROperator userOPERATOR

The user MAINT can see the other users in the USERS DIRECT file.

⁠MVSTk4

This is an MVS 3.8j (the last version of MVS that can be legally deployed without a license - and an actual mainframe), with numerous improvements, fixes, and extras.

It comes with some preconfigured users:

UseridDescriptionPassword
HERC01Fully AuthorizedCUL8TR
HERC02Fully AuthorizedCUL8TR
HERC03Standard userPASS4U
HERC04Standard userPASS4U
IBMUSEREmergency userIBMPASS

Tag summary

Content type

Image

Digest

sha256:05c4dd61c…

Size

727.4 MB

Last updated

3 days ago

docker pull rbanffy/vm370ce