Basic Development Environment for use in labs and other projects.
2.7K
This is a development environment in a container setup to allow for an quick and packaged common development environment for anyone to use in labs and sample code.
Checkout the Dockerfile on GitHub.
The development environment is based on the CentOS 7 official image and offers the following installed:
-v /var/run/docker.sock:/var/run/docker.sock to link to the docker daemon on the host machineTo quickly start an interactive container run:
docker run --rm --name devbox -it hpreston/devbox:latest
If you'd like to use docker within the container, run like this:
docker run --rm --name devbox -it \
-v /var/run/docker.sock:/var/run/docker.sock \
hpreston/devbox:latest
Content type
Image
Digest
Size
555.9 MB
Last updated
over 7 years ago
docker pull hpreston/devbox