Ubuntu 22.04 docker base image. Built to be able to test playbooks and Ansible roles as if you were on an operating system with systemd.
latest
: the latest stable release.X.Y.Z
: the exact version associated with the tag X.Y.Z.develop
: the version currently being tested.main
: the latest beta build.nightly
: the latest nightly build.
This image is built on GitHub each day, and any time a commit is push
or a release
is made. But if you need to build the image on your own locally, do the following:
- Install Docker.
cd
into this directory.- Run
docker build -t localhost/ubuntu2204:test .
- Install Docker.
- Pull this image from GitHub Container Registry:
docker pull ghcr.io/pandemonium1986/ubuntu2204:nightly
(or use the image you built earlier, e.g.localhost/ubuntu2204:test
). - Run a container from the image:
docker run --rm --detach --privileged --tty --tmpfs /tmp --tmpfs /run --name ubuntu2204-pdm-ghcr ghcr.io/pandemonium1986/ubuntu2204:nightly
. - Exec cmd or interactive shell:
docker exec ubuntu2204-pdm-ghcr cat /etc/os-release
ordocker exec --tty --interactive ubuntu2204-pdm-ghcr bash
- Michael Maffait - Initial work - Pandemonium1986