like openrct2/openrct2-cli, except develop only gets updated when the network version changes
10K+
Identical to openrct2/openrct2-cli, with additional images to choose from and the develop tags only gets updated when the network version changes. Essentially this skips all updates that don't impact OpenRCT2 server functionality. All builds are automated, latest versions are typically pushed 30 minutes after they hit OpenRCT2's code repository. Now with ARM64 support!
Dockerfiles are availabe here
An open-source re-implementation of RollerCoaster Tycoon 2. A construction and management simulation video game that simulates amusement park management.
This repository contains Dockerfile definitions for the command line version OpenRCT2. These images should be used for hosting multiplayer servers or executing commands such as generating screenshots.
You can pull and test the latest develop version by running:
$ docker run --rm corysanin/openrct2-cli:develop --version
To host a multiplayer server, create a container that exposes the desired port and pass in a URL to the park to load. For example:
$ docker run --rm -p 11753:11753 -it corysanin/openrct2-cli host https://ffa-tycoon.com/parks/sandbox
All configuraion data is stored inside the container. If you want to persit it outside the container, you can mount it to a volume or your local filesystem. Mounting your local filesystem also allows you to read and write saved games locally. For example:
$ docker run --rm -p 11753:11753 -v /home/me/openrct2-config:/home/openrct2/.config/OpenRCT2 -it corysanin/openrct2-cli host /home/openrct2/.config/OpenRCT2/save/mypark.sv6
The command above will mount the OpenRCT2 user / config directory inside the container to a directory on your local filesystem. This will allow you to persist and edit the configuration, saved games etc. locally.
It will then host a new server and load the saved game mypark.sv6 located in the mounted directory under the save sub-directory.
Content type
Image
Digest
sha256:366949ad9…
Size
155.1 MB
Last updated
11 days ago
docker pull corysanin/openrct2-cli