├── .gitignore ├── README.md ├── base └── Dockerfile ├── cloud9 └── Dockerfile ├── collectd └── Dockerfile ├── craftbukkit └── Dockerfile ├── crosscompile └── Dockerfile ├── django └── Dockerfile ├── influxdb └── Dockerfile ├── ipython └── Dockerfile ├── kafka └── Dockerfile ├── mc-coverviewer └── Dockerfile ├── minecraft └── Dockerfile ├── python └── Dockerfile ├── redis └── Dockerfile ├── rethinkdb └── Dockerfile ├── sentry ├── Dockerfile └── sentry.conf.py ├── stash ├── Dockerfile └── start.sh ├── zeromq └── Dockerfile └── zookeeper └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/README.md -------------------------------------------------------------------------------- /base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/base/Dockerfile -------------------------------------------------------------------------------- /cloud9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/cloud9/Dockerfile -------------------------------------------------------------------------------- /collectd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/collectd/Dockerfile -------------------------------------------------------------------------------- /craftbukkit/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/craftbukkit/Dockerfile -------------------------------------------------------------------------------- /crosscompile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/crosscompile/Dockerfile -------------------------------------------------------------------------------- /django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/django/Dockerfile -------------------------------------------------------------------------------- /influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/influxdb/Dockerfile -------------------------------------------------------------------------------- /ipython/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/ipython/Dockerfile -------------------------------------------------------------------------------- /kafka/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/kafka/Dockerfile -------------------------------------------------------------------------------- /mc-coverviewer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/mc-coverviewer/Dockerfile -------------------------------------------------------------------------------- /minecraft/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/minecraft/Dockerfile -------------------------------------------------------------------------------- /python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/python/Dockerfile -------------------------------------------------------------------------------- /redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/redis/Dockerfile -------------------------------------------------------------------------------- /rethinkdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/rethinkdb/Dockerfile -------------------------------------------------------------------------------- /sentry/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/sentry/Dockerfile -------------------------------------------------------------------------------- /sentry/sentry.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/sentry/sentry.conf.py -------------------------------------------------------------------------------- /stash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/stash/Dockerfile -------------------------------------------------------------------------------- /stash/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/stash/start.sh -------------------------------------------------------------------------------- /zeromq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/zeromq/Dockerfile -------------------------------------------------------------------------------- /zookeeper/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crosbymichael/Dockerfiles/HEAD/zookeeper/Dockerfile --------------------------------------------------------------------------------