This repository contains various Dockerfile
s that will build many useful images.
All of these images are also available on DockerHub.
The GUI containers (in IDEs/
and games/
) will run on a local X11 server or a remote X11 server.
To run a GUI container on a local X11 server, use the following:
docker run -v /tmp:/tmp zachdeibert/container-name $DISPLAY $USER
To run a GUI container on a remote X11 server, use the following:
docker run zachdeibert/container-name $DISPLAY $USER
The filesystem is completely different inside the container than outside the container.
Therefore, when you recreate the container, all of the files will be deleted.
To change this, you can use the -v
option with the folder you want to be the same inside and outside.
For example, the following command will make /path/to/folder
the same inside and outside the container:
docker run -v /tmp:/tmp -v /path/to/folder:/path/to/folder zachdeibert/container-name $DISPLAY $USER
To run a GUI container with a Nvidia graphics card, additionally add the following flags before the container name:
--device /dev/nvidia0 --device /dev/nvidiactl
IDEs/
- These are IDEs that help with development (needs to run with GUI)IDEs/AndroidStudio/
- The Android Studio IDEIDEs/CodeBlocks/
- The (Code::Blocks IDE) for C++IDEs/EclipseJava/
- The Eclipse IDE for Java DevelopersIDEs/Monodevelop/
- The Monodevelop IDE for C# developmentIDEs/QtCreator/
- The QT Creator IDE for C++
games/
- These are games (needs to run with GUI and are slower due to an OpenGL problem)games/Technic/
- The Technic Launchergames/MinecraftServer/
- Minecraft server in a container
software/
- Other development software (CLI only)software/autotools/
- Contains all of the autotools programs (autoconf
,automake
,libtool
, etc.)software/debian+mono-dev/
- Contains the tools needed to build mono programs and package Debian packages (.deb
s)software/debian-dev/
- Contains the tools needed to build Debian packages (.deb
s)software/electron/
- Contains the tools needed to build and package Electron appssoftware/electron/make/
- Contains all of the tools fromsoftware/electron/
and has Makesoftware/gradle/
- Contains all of the tools needed to build Gradle projectssoftware/jekyll/
- Contains the tools needed to build Jekyll sites and has Makesoftware/make/
- Contains all of the tools needed for building Docker images with Makesoftware/mono/
- A version of the Librarymono
image with an updated OSsoftware/mono+make/
- Contains all of the tools needed for building Mono projects with Makesoftware/ngx_http_proxy_connect_module
- Contains a version of Nginx with the ngx_http_proxy_connect_module installedsoftware/nsis/
- Contains the tools needed to build a NSIS installersoftware/typescript/
- Contains the typescript compiler