A repo to house my trusted Docker builds, see my Docker Hub Profile for more information. Have a read of my blog posts on Docker for more information.
- Base - Base build for use with other Docker builds
- NGINX Proxy - A reverse proxy container
- AB - A container to run Apache Bench
- Consul - Run a single or clustered Consul install
- Jenkins - Run a Jenkins 2 container
- NGINX & PHP 5.6 - An all in-one NGINX / PHP 5.6 container
- NGINX & PHP 7 - An all in-one NGINX / PHP 7 container
- MariaDB - A MariaDB 10 container, best used with other containers
- NGINX - Just NGINX
To run a stack you would run something like;
docker run -d -v /home/containers/database:/var/lib/mysql --name="db" russmckendrick/mariadb
docker run -d -v /home/containers/web:/var/www/html -e VIRTUAL_HOST=app.dev.mckendrick.io --link db:db --name="web" russmckendrick/nginx-php7