A Docker in Docker image that can be used to start a Docker daemon.
Docker is a set of platform as a service (PaaS) products that uses OS-level virtualization to deliver software in packages called containers.
from wikipedia.org
Starting the docker daemon can be done with the following command:
docker container run --detach --publish 2375:2375/tcp --privileged tarbase/docker
The Docker option --privileged
are required for the container to be able to
start.
The Docker daemon status can be check by looking at the server output using the following docker command:
docker container logs CONTAINER_ID
See the list of contributors who participated in this project.