This page outlines the process of building container images on the `builder` VM and sending them to the VM actually running an RDMS instance without using a container registry.
As `builder@builder.rd.ruhr-uni-bochum.de`:
```bash
cd"${HOME}/rdms"
# Fetch latest changes from Gitlab server
git fetch
# Checkout git branch from which to build our image
git checkout some-feature-branch
# Verify that there are no changes that have not been committed to the git branch we just checked out
git status
# Get latest changes from git repo
git pull
# Note: Do *not* apply any local changes that are not committed/documented in the git branch you checked out!
# Only generate the DOCKER_IMAGE_TAG variable once *after* applying all your changes, then copy/reuse the generated value when issuing commands later on