├── .gitignore ├── alpine_jdk8 └── Dockerfile ├── artik ├── Dockerfile ├── RPM-GPG-KEY-artik ├── artik-libs-deps.zip ├── artik.repo └── rsync.sh ├── aspnet └── Dockerfile ├── centos_jdk8 └── Dockerfile ├── cpp_gcc └── Dockerfile ├── debian_jdk8 └── Dockerfile ├── debian_jdk8_node └── Dockerfile ├── debian_jre └── Dockerfile ├── dotnet_core └── Dockerfile ├── hadoop-dev ├── Dockerfile └── README.md ├── meteor ├── latest │ └── Dockerfile └── ubuntu │ └── Dockerfile ├── node ├── latest │ └── Dockerfile └── ubuntu │ └── Dockerfile ├── php ├── gae │ └── Dockerfile ├── laravel │ └── Dockerfile ├── latest │ └── Dockerfile └── ubuntu │ └── Dockerfile ├── ruby_rails └── Dockerfile ├── selenium ├── Dockerfile ├── index.html └── supervisord.conf ├── ubuntu_android ├── Dockerfile ├── index.html └── supervisord.conf ├── ubuntu_go └── Dockerfile ├── ubuntu_gradle └── Dockerfile ├── ubuntu_jdk8 └── Dockerfile ├── ubuntu_jre └── Dockerfile ├── ubuntu_python ├── 2.7 │ └── Dockerfile ├── 3.5 │ └── Dockerfile ├── gae_python2.7 │ └── Dockerfile └── gae_python3 │ └── Dockerfile ├── ubuntu_wildfly8 └── Dockerfile └── x11_vnc ├── Dockerfile ├── index.html └── supervisord.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /alpine_jdk8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/alpine_jdk8/Dockerfile -------------------------------------------------------------------------------- /artik/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/artik/Dockerfile -------------------------------------------------------------------------------- /artik/RPM-GPG-KEY-artik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/artik/RPM-GPG-KEY-artik -------------------------------------------------------------------------------- /artik/artik-libs-deps.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/artik/artik-libs-deps.zip -------------------------------------------------------------------------------- /artik/artik.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/artik/artik.repo -------------------------------------------------------------------------------- /artik/rsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/artik/rsync.sh -------------------------------------------------------------------------------- /aspnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/aspnet/Dockerfile -------------------------------------------------------------------------------- /centos_jdk8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/centos_jdk8/Dockerfile -------------------------------------------------------------------------------- /cpp_gcc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/cpp_gcc/Dockerfile -------------------------------------------------------------------------------- /debian_jdk8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/debian_jdk8/Dockerfile -------------------------------------------------------------------------------- /debian_jdk8_node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/debian_jdk8_node/Dockerfile -------------------------------------------------------------------------------- /debian_jre/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/debian_jre/Dockerfile -------------------------------------------------------------------------------- /dotnet_core/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/dotnet_core/Dockerfile -------------------------------------------------------------------------------- /hadoop-dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/hadoop-dev/Dockerfile -------------------------------------------------------------------------------- /hadoop-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/hadoop-dev/README.md -------------------------------------------------------------------------------- /meteor/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/meteor/latest/Dockerfile -------------------------------------------------------------------------------- /meteor/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/meteor/ubuntu/Dockerfile -------------------------------------------------------------------------------- /node/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/node/latest/Dockerfile -------------------------------------------------------------------------------- /node/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/node/ubuntu/Dockerfile -------------------------------------------------------------------------------- /php/gae/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/php/gae/Dockerfile -------------------------------------------------------------------------------- /php/laravel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/php/laravel/Dockerfile -------------------------------------------------------------------------------- /php/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/php/latest/Dockerfile -------------------------------------------------------------------------------- /php/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/php/ubuntu/Dockerfile -------------------------------------------------------------------------------- /ruby_rails/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ruby_rails/Dockerfile -------------------------------------------------------------------------------- /selenium/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/selenium/Dockerfile -------------------------------------------------------------------------------- /selenium/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/selenium/index.html -------------------------------------------------------------------------------- /selenium/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/selenium/supervisord.conf -------------------------------------------------------------------------------- /ubuntu_android/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_android/Dockerfile -------------------------------------------------------------------------------- /ubuntu_android/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_android/index.html -------------------------------------------------------------------------------- /ubuntu_android/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_android/supervisord.conf -------------------------------------------------------------------------------- /ubuntu_go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_go/Dockerfile -------------------------------------------------------------------------------- /ubuntu_gradle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_gradle/Dockerfile -------------------------------------------------------------------------------- /ubuntu_jdk8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_jdk8/Dockerfile -------------------------------------------------------------------------------- /ubuntu_jre/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_jre/Dockerfile -------------------------------------------------------------------------------- /ubuntu_python/2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_python/2.7/Dockerfile -------------------------------------------------------------------------------- /ubuntu_python/3.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_python/3.5/Dockerfile -------------------------------------------------------------------------------- /ubuntu_python/gae_python2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_python/gae_python2.7/Dockerfile -------------------------------------------------------------------------------- /ubuntu_python/gae_python3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_python/gae_python3/Dockerfile -------------------------------------------------------------------------------- /ubuntu_wildfly8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/ubuntu_wildfly8/Dockerfile -------------------------------------------------------------------------------- /x11_vnc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/x11_vnc/Dockerfile -------------------------------------------------------------------------------- /x11_vnc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/x11_vnc/index.html -------------------------------------------------------------------------------- /x11_vnc/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenvy-legacy/dockerfiles/HEAD/x11_vnc/supervisord.conf --------------------------------------------------------------------------------