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:latest
Use it in a Dockerfile
:
FROM ghcr.io/markusjx/datagen:latest
datagen: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:alpine
Use it in a Dockerfile
:
FROM ghcr.io/markusjx/datagen:alpine
datagen: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:slim
Use it in a Dockerfile
:
FROM ghcr.io/markusjx/datagen:slim
datagen: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-slim
Use it in a Dockerfile
:
FROM ghcr.io/markusjx/datagen:debian-slim