This example shows how to build and run Atomia DNS in a container.
See Docker installation: Docker
No public Docker image is available for Atomia DNS. Build your own image from source:
git clone https://github.com/atomia/atomiadns.git
cd atomiadns
# Create a Dockerfile (example)
cat > Dockerfile << 'EOF'
FROM perl:latest
WORKDIR /opt/atomia-dns
COPY . .
RUN cpanm --installdeps .
EXPOSE 8080
CMD ["perl", "bin/atomia-dns"]
EOF
# Build the image
docker build -t atomia-dns:latest .
# Run the container
docker run --rm -it atomia-dns:latest --help