Configuration for RotomNG lives in configs.
There is an example config file that should be copied to rotom.toml and edited to your liking. All sections are optional and have sensible defaults.
If you are migrating from OG Rotom, there is a conversion script at configs/rotom-og-to-ng.py that will convert your existing config to the new format.
RotomNG images are published to ghcr.io/unownhash/rotomng/rotom-ng.
Available tags:
main— built from the latest commit on themainbranch. This is the recommended tag for most users and maps to the latest release.vX.Y.Z(e.g.v1.0.0) — a specific stable release version. Pin to a version tag for reproducible deployments.testing— built from thetestingbranch. May contain pre-release or in-progress changes; intended for testing only. This will generally point to the latest testing release.vX.Y.Z-testing(e.g.v1.0.0-beta1-testing) — a specific pre-release version from the testing branch.
Rename the docker compose example file to docker-compose.yml, edit it, and:
$ docker compose pull
$ docker compose up -d
If you prefer to build the image yourself instead of pulling from GHCR:
$ docker build -f apps/rotom-ng/Dockerfile -t rotom-ng .
- You will need to have at least golang 1.26.3 installed. You may need to install it manually. See the instructions and download links.
- Ensure node v20.8 or higher is installed (v24+ recommended).
- Install Bun v1.3 or higher. Bun is used to build the frontend UI.
From the RotomNG root directory:
$ make
This will install frontend dependencies via Bun, build the UI, and compile the Go binary.
$ pm2 start ./rotom-ng --name rotom-ng
$ ./rotom-ng
You can also specify a config file path:
$ ./rotom-ng /path/to/rotom.toml