├── LICENSE ├── README.md ├── asciidoctor └── Dockerfile ├── assets ├── a600.jpg └── spectrum.png ├── bless └── Dockerfile ├── compose └── Dockerfile ├── darktable ├── Dockerfile ├── README.md └── mimeinfo.cache ├── devtools └── Dockerfile ├── eclipse └── Dockerfile ├── fpm └── Dockerfile ├── fs-uae ├── Dockerfile └── README.md ├── fuse-emulator ├── Dockerfile └── README.md ├── gimp └── Dockerfile ├── groovy └── Dockerfile ├── hugo └── Dockerfile ├── i3-gaps └── Dockerfile ├── i3lock └── Dockerfile ├── ibmjava-maven └── Dockerfile ├── ircd └── Dockerfile ├── java └── Dockerfile ├── lolcat └── Dockerfile ├── maven └── Dockerfile ├── mercurial └── Dockerfile ├── mixxx └── Dockerfile ├── my-mind └── Dockerfile ├── openbve └── Dockerfile ├── pidgin ├── Dockerfile └── README.md ├── polarfinder ├── Dockerfile ├── README.md └── install-mfc42.sh ├── pubsubemuluator └── Dockerfile ├── puppet └── Dockerfile ├── rawtherapee ├── Dockerfile └── README.md ├── ruby └── Dockerfile ├── smppsimulator └── Dockerfile ├── taskwarrior ├── Dockerfile └── README.md ├── transmission ├── Dockerfile └── README.md ├── tvheadend ├── Dockerfile └── README.md ├── wildfly └── Dockerfile ├── wine ├── Dockerfile └── README.md └── xchat ├── Dockerfile └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/README.md -------------------------------------------------------------------------------- /asciidoctor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/asciidoctor/Dockerfile -------------------------------------------------------------------------------- /assets/a600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/assets/a600.jpg -------------------------------------------------------------------------------- /assets/spectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/assets/spectrum.png -------------------------------------------------------------------------------- /bless/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/bless/Dockerfile -------------------------------------------------------------------------------- /compose/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/compose/Dockerfile -------------------------------------------------------------------------------- /darktable/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/darktable/Dockerfile -------------------------------------------------------------------------------- /darktable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/darktable/README.md -------------------------------------------------------------------------------- /darktable/mimeinfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/darktable/mimeinfo.cache -------------------------------------------------------------------------------- /devtools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/devtools/Dockerfile -------------------------------------------------------------------------------- /eclipse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/eclipse/Dockerfile -------------------------------------------------------------------------------- /fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/fpm/Dockerfile -------------------------------------------------------------------------------- /fs-uae/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/fs-uae/Dockerfile -------------------------------------------------------------------------------- /fs-uae/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/fs-uae/README.md -------------------------------------------------------------------------------- /fuse-emulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/fuse-emulator/Dockerfile -------------------------------------------------------------------------------- /fuse-emulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/fuse-emulator/README.md -------------------------------------------------------------------------------- /gimp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/gimp/Dockerfile -------------------------------------------------------------------------------- /groovy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/groovy/Dockerfile -------------------------------------------------------------------------------- /hugo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/hugo/Dockerfile -------------------------------------------------------------------------------- /i3-gaps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/i3-gaps/Dockerfile -------------------------------------------------------------------------------- /i3lock/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/i3lock/Dockerfile -------------------------------------------------------------------------------- /ibmjava-maven/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/ibmjava-maven/Dockerfile -------------------------------------------------------------------------------- /ircd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/ircd/Dockerfile -------------------------------------------------------------------------------- /java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/java/Dockerfile -------------------------------------------------------------------------------- /lolcat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/lolcat/Dockerfile -------------------------------------------------------------------------------- /maven/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/maven/Dockerfile -------------------------------------------------------------------------------- /mercurial/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | 3 | RUN apk add --no-cache --update mercurial 4 | 5 | ENTRYPOINT [ "hg" ] 6 | -------------------------------------------------------------------------------- /mixxx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/mixxx/Dockerfile -------------------------------------------------------------------------------- /my-mind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/my-mind/Dockerfile -------------------------------------------------------------------------------- /openbve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/openbve/Dockerfile -------------------------------------------------------------------------------- /pidgin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/pidgin/Dockerfile -------------------------------------------------------------------------------- /pidgin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/pidgin/README.md -------------------------------------------------------------------------------- /polarfinder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/polarfinder/Dockerfile -------------------------------------------------------------------------------- /polarfinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/polarfinder/README.md -------------------------------------------------------------------------------- /polarfinder/install-mfc42.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/polarfinder/install-mfc42.sh -------------------------------------------------------------------------------- /pubsubemuluator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/pubsubemuluator/Dockerfile -------------------------------------------------------------------------------- /puppet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/puppet/Dockerfile -------------------------------------------------------------------------------- /rawtherapee/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/rawtherapee/Dockerfile -------------------------------------------------------------------------------- /rawtherapee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/rawtherapee/README.md -------------------------------------------------------------------------------- /ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/ruby/Dockerfile -------------------------------------------------------------------------------- /smppsimulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/smppsimulator/Dockerfile -------------------------------------------------------------------------------- /taskwarrior/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/taskwarrior/Dockerfile -------------------------------------------------------------------------------- /taskwarrior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/taskwarrior/README.md -------------------------------------------------------------------------------- /transmission/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/transmission/Dockerfile -------------------------------------------------------------------------------- /transmission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/transmission/README.md -------------------------------------------------------------------------------- /tvheadend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/tvheadend/Dockerfile -------------------------------------------------------------------------------- /tvheadend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/tvheadend/README.md -------------------------------------------------------------------------------- /wildfly/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/wildfly/Dockerfile -------------------------------------------------------------------------------- /wine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/wine/Dockerfile -------------------------------------------------------------------------------- /wine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/wine/README.md -------------------------------------------------------------------------------- /xchat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/xchat/Dockerfile -------------------------------------------------------------------------------- /xchat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesnetherton/dockerfiles/HEAD/xchat/README.md --------------------------------------------------------------------------------