Docker containers
datagen is available as a Docker container. The images are available on the
GitHub Container Registry (opens in a new tab).
Currently, there are four different base tags available: latest, alpine, slim and debian-slim.
In addition to the base tags, there are also tags for each version of datagen available.
datagen:latest
An image based on debian:bookworm-slim (opens in a new tab)
containing datagen, the openaddresses-plugin
and the upload-plugin.
Install from command line:
docker pull ghcr.io/markusjx/datagen:latestUse it in a Dockerfile:
FROM ghcr.io/markusjx/datagen:latestdatagen:alpine
An image based on alpine:3.14 (opens in a new tab)
containing datagen without node.js plugin support,
the openaddresses-plugin
and the upload-plugin.
Install from command line:
docker pull ghcr.io/markusjx/datagen:alpineUse it in a Dockerfile:
FROM ghcr.io/markusjx/datagen:alpinedatagen:slim
An image based on alpine:3.14 (opens in a new tab)
only containing datagen without node.js plugin support.
Install from command line:
docker pull ghcr.io/markusjx/datagen:slimUse it in a Dockerfile:
FROM ghcr.io/markusjx/datagen:slimdatagen:debian-slim
An image based on debian:bookworm-slim (opens in a new tab)
only containing datagen without node.js plugin support.
Install from command line:
docker pull ghcr.io/markusjx/datagen:debian-slimUse it in a Dockerfile:
FROM ghcr.io/markusjx/datagen:debian-slim