├── LICENSE ├── README.md ├── centos6.devtoolset-3-dyninst ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-3-eclipse ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-3-elfutils ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-3-oprofile ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-3-systemtap ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ ├── README │ └── systemtap.txt │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-3-toolchain ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-3-valgrind ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-3 ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-4-dyninst ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-4-elfutils ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-4-oprofile ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-4-systemtap ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ ├── README │ └── systemtap.txt │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-4-toolchain ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-4-valgrind ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos6.devtoolset-4 ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-3-dyninst ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-3-eclipse ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-3-elfutils ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-3-oprofile ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-3-systemtap ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ ├── README │ └── systemtap.txt │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-3-toolchain ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-3-valgrind ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-3 ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-4-dyninst ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-4-elfutils ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-4-oprofile ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-4-systemtap ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ ├── README │ └── systemtap.txt │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-4-toolchain ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-4-valgrind ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.devtoolset-4 ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── centos7.httpd24 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ └── scl_enable ├── run-httpd24.sh └── test │ └── run ├── centos7.mongodb24 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── common.sh │ ├── initiate_replica.sh │ ├── mongodb.conf.template │ ├── replica_supervisor.sh │ └── scl_enable ├── examples │ └── replica │ │ ├── README.md │ │ └── mongodb-clustered.json ├── run-mongod.sh └── test │ └── run ├── centos7.mysql55 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── examples │ └── replica │ │ ├── README.md │ │ ├── mysql_replica.json │ │ ├── teardown.sh │ │ └── volume.json ├── root │ ├── etc │ │ └── my.cnf │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ ├── mysqld-master │ │ ├── mysqld-slave │ │ ├── run-mysqld │ │ ├── run-mysqld-master │ │ └── run-mysqld-slave │ │ ├── libexec │ │ └── container-setup │ │ └── share │ │ └── container-scripts │ │ └── mysql │ │ ├── common.sh │ │ ├── my-base.cnf.template │ │ ├── my-master.cnf.template │ │ ├── my-paas.cnf.template │ │ ├── my-slave.cnf.template │ │ ├── passwd-change.sh │ │ ├── post-init.sh │ │ ├── scl_enable │ │ ├── validate-replication-variables.sh │ │ └── validate-variables.sh └── test │ └── run ├── centos7.nginx16 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ └── scl_enable ├── run-nginx16.sh └── test │ └── run ├── centos7.nodejs010 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── npm_global_module_list │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── test-app │ ├── README.md │ ├── iisnode.yml │ ├── package.json │ ├── server.js │ └── web.config ├── centos7.perl516 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── httpd.conf │ │ ├── httpdconf.sed │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── sample-test-app │ ├── cpanfile │ └── index.pl ├── centos7.php55 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── httpdconf.sed │ │ ├── php.d │ │ └── opcache.ini.template │ │ ├── php.ini.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── test-app │ ├── composer.json │ └── index.php ├── centos7.postgresql92 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── common.sh │ ├── openshift-custom-postgresql.conf.template │ ├── openshift-custom-recovery.conf.template │ ├── passwd.template │ └── scl_enable ├── run-postgresql-master.sh ├── run-postgresql-slave.sh ├── run-postgresql.sh └── test │ └── run ├── centos7.python27 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── generate_container_user │ │ ├── passwd.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── django-test-app │ ├── .gitignore │ ├── manage.py │ ├── project │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── requirements.txt │ ├── run │ ├── setup-test-app │ ├── .gitignore │ ├── setup.py │ └── testapp.py │ └── standalone-test-app │ ├── app.py │ └── requirements.txt ├── centos7.python33 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── generate_container_user │ │ ├── passwd.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── django-test-app │ ├── .gitignore │ ├── manage.py │ ├── project │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── requirements.txt │ ├── run │ ├── setup-test-app │ ├── .gitignore │ ├── setup.py │ └── testapp.py │ └── standalone-test-app │ ├── app.py │ └── requirements.txt ├── centos7.rh-mariadb100 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── root │ ├── etc │ │ └── my.cnf │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ ├── mysqld-master │ │ ├── mysqld-slave │ │ ├── run-mysqld │ │ ├── run-mysqld-master │ │ └── run-mysqld-slave │ │ ├── libexec │ │ └── container-setup │ │ └── share │ │ └── container-scripts │ │ └── mysql │ │ ├── common.sh │ │ ├── my-base.cnf.template │ │ ├── my-master.cnf.template │ │ ├── my-paas.cnf.template │ │ ├── my-repl-gtid.cnf.template │ │ ├── my-slave.cnf.template │ │ ├── passwd-change.sh │ │ ├── post-init.sh │ │ ├── scl_enable │ │ ├── validate-replication-variables.sh │ │ └── validate-variables.sh └── test │ └── run ├── centos7.rh-mariadb101 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── root │ ├── etc │ │ └── my.cnf │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ ├── mysqld-master │ │ ├── mysqld-slave │ │ ├── run-mysqld │ │ ├── run-mysqld-master │ │ └── run-mysqld-slave │ │ ├── libexec │ │ └── container-setup │ │ └── share │ │ └── container-scripts │ │ └── mysql │ │ ├── common.sh │ │ ├── my-base.cnf.template │ │ ├── my-master.cnf.template │ │ ├── my-paas.cnf.template │ │ ├── my-repl-gtid.cnf.template │ │ ├── my-slave.cnf.template │ │ ├── passwd-change.sh │ │ ├── post-init.sh │ │ ├── scl_enable │ │ ├── validate-replication-variables.sh │ │ └── validate-variables.sh └── test │ └── run ├── centos7.rh-mongodb26 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── common.sh │ ├── initiate_replica.sh │ ├── mongodb.conf.template │ ├── replica_supervisor.sh │ └── scl_enable ├── run-mongod.sh └── test │ └── run ├── centos7.rh-mongodb32 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.md ├── root │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ └── run-mongod │ │ ├── libexec │ │ └── fix-permissions │ │ └── share │ │ └── container-scripts │ │ └── mongodb │ │ ├── common.sh │ │ ├── initiate_replica.sh │ │ ├── mongodb.conf.template │ │ ├── replica_supervisor.sh │ │ └── scl_enable └── test │ └── run ├── centos7.rh-mysql56 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── examples │ └── replica │ │ ├── README.md │ │ ├── mysql_replica.json │ │ ├── teardown.sh │ │ └── volume.json ├── root │ ├── etc │ │ └── my.cnf │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ ├── mysqld-master │ │ ├── mysqld-slave │ │ ├── run-mysqld │ │ ├── run-mysqld-master │ │ └── run-mysqld-slave │ │ ├── libexec │ │ └── container-setup │ │ └── share │ │ └── container-scripts │ │ └── mysql │ │ ├── common.sh │ │ ├── my-base.cnf.template │ │ ├── my-master.cnf.template │ │ ├── my-paas.cnf.template │ │ ├── my-repl-gtid.cnf.template │ │ ├── my-slave.cnf.template │ │ ├── passwd-change.sh │ │ ├── post-init.sh │ │ ├── scl_enable │ │ ├── validate-replication-variables.sh │ │ └── validate-variables.sh └── test │ └── run ├── centos7.rh-nodejs4 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── npm_global_module_list │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── test-app │ ├── README.md │ ├── iisnode.yml │ ├── package.json │ ├── server.js │ └── web.config ├── centos7.rh-passenger40 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── atomic-contrib │ └── usr │ │ ├── bin │ │ ├── atomic-install.sh │ │ └── atomic-uninstall.sh │ │ └── share │ │ └── atomic │ │ └── template.service ├── contrib │ ├── .gemrc │ └── etc │ │ ├── httpdconf.sed │ │ ├── passenger.conf │ │ ├── puma.cfg │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── puma-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ ├── rack-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ └── run ├── centos7.rh-perl520 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── httpd.conf │ │ ├── httpdconf.sed │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── sample-test-app │ ├── cpanfile │ └── index.pl ├── centos7.rh-php56 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── httpdconf.sed │ │ ├── php.d │ │ └── 10-opcache.ini.template │ │ ├── php.ini.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── test-app │ ├── composer.json │ └── index.php ├── centos7.rh-postgresql94 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── common.sh │ ├── openshift-custom-postgresql.conf.template │ ├── openshift-custom-recovery.conf.template │ ├── passwd.template │ └── scl_enable ├── run-postgresql-master.sh ├── run-postgresql-slave.sh ├── run-postgresql.sh └── test │ └── run ├── centos7.rh-postgresql95 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── root │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ ├── run-postgresql │ │ ├── run-postgresql-master │ │ └── run-postgresql-slave │ │ ├── libexec │ │ └── fix-permissions │ │ └── share │ │ └── container-scripts │ │ └── postgresql │ │ ├── common.sh │ │ ├── openshift-custom-postgresql.conf.template │ │ ├── openshift-custom-recovery.conf.template │ │ └── scl_enable └── test │ └── run ├── centos7.rh-python34 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── generate_container_user │ │ ├── passwd.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── django-test-app │ ├── .gitignore │ ├── manage.py │ ├── project │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── requirements.txt │ ├── run │ ├── setup-test-app │ ├── .gitignore │ ├── setup.py │ └── testapp.py │ └── standalone-test-app │ ├── app.py │ └── requirements.txt ├── centos7.rh-python35 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── generate_container_user │ │ ├── passwd.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── django-test-app │ ├── .gitignore │ ├── manage.py │ ├── project │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── requirements.txt │ ├── run │ ├── setup-test-app │ ├── .gitignore │ ├── setup.py │ └── testapp.py │ └── standalone-test-app │ ├── app.py │ └── requirements.txt ├── centos7.rh-ror41 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── .gemrc │ ├── bin │ │ ├── container-entrypoint │ │ └── usage │ └── etc │ │ └── scl_enable └── test │ └── run ├── centos7.rh-ror42 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── .gemrc │ ├── bin │ │ ├── container-entrypoint │ │ └── usage │ └── etc │ │ └── scl_enable └── test │ └── run ├── centos7.rh-ruby22 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── .gemrc │ └── etc │ │ ├── puma.cfg │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── puma-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ ├── rack-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ └── run ├── centos7.rh-ruby23 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── .gemrc │ └── etc │ │ ├── puma.cfg │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── puma-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ ├── rack-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ └── run ├── centos7.ruby20 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── .gemrc │ └── etc │ │ ├── puma.cfg │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── puma-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ ├── rack-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ └── run ├── centos7.s2i-base ├── Dockerfile ├── Dockerfile.rhel7 ├── LICENSE ├── Makefile ├── README.generation ├── README.md ├── bin │ ├── base-usage │ └── container-entrypoint ├── contrib │ └── scl_enable ├── hack │ └── build.sh └── test │ └── run ├── config.generated ├── config.local ├── config.remote ├── regenerate.sh ├── rhel6.devtoolset-3-dyninst ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-3-eclipse ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-3-elfutils ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-3-oprofile ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-3-systemtap ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ ├── README │ └── systemtap.txt │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-3-toolchain ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-3-valgrind ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-3 ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-4-dyninst ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-4-elfutils ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-4-oprofile ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-4-systemtap ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ ├── README │ └── systemtap.txt │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-4-toolchain ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-4-valgrind ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel6.devtoolset-4 ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-3-dyninst ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-3-eclipse ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-3-elfutils ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-3-oprofile ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-3-systemtap ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ ├── README │ └── systemtap.txt │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-3-toolchain ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-3-valgrind ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-3 ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-3.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-4-dyninst ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-4-elfutils ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-4-oprofile ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-4-perftools ├── .gitignore ├── Dockerfile ├── README.generation └── contrib │ ├── bin │ ├── container-entrypoint │ └── usage │ └── etc │ └── scl_enable ├── rhel7.devtoolset-4-systemtap ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ ├── README │ └── systemtap.txt │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-4-toolchain ├── .gitignore ├── Dockerfile ├── README.generation └── contrib │ ├── bin │ ├── container-entrypoint │ └── usage │ └── etc │ └── scl_enable ├── rhel7.devtoolset-4-valgrind ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.devtoolset-4 ├── Dockerfile ├── README.generation ├── README.md ├── enabledevtoolset-4.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.httpd24 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ ├── etc │ │ ├── generate_container_user │ │ ├── passwd.template │ │ └── scl_enable │ ├── httpdconf.sed │ ├── scl_enable │ └── sslconf.sed ├── run-httpd24.sh ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage ├── test │ └── run └── utils.sh ├── rhel7.mariadb55 ├── .bashrc ├── Dockerfile ├── README.generation ├── README.md ├── enablemariadb55.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── my.cnf ├── root │ └── .bashrc └── usr │ ├── bin │ ├── cont-mysqld │ ├── container-entrypoint │ └── container-usage │ ├── libexec │ └── cont-setup │ └── share │ ├── cont-docs │ ├── 30-mysql.txt │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ ├── README │ └── mysql │ │ └── post-init │ │ ├── 10-base.sh │ │ ├── 30-config-paas.sh │ │ └── my.cnf.paas.template │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.mongodb24 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── examples │ └── replica │ │ ├── README.md │ │ └── mongodb-clustered.json ├── root │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ └── run-mongod │ │ ├── libexec │ │ └── fix-permissions │ │ └── share │ │ └── container-scripts │ │ └── mongodb │ │ ├── common.sh │ │ ├── initiate_replica.sh │ │ ├── mongodb.conf.template │ │ ├── replica_supervisor.sh │ │ └── scl_enable └── test │ └── run ├── rhel7.mysql55 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── examples │ └── replica │ │ ├── README.md │ │ ├── mysql_replica.json │ │ ├── teardown.sh │ │ └── volume.json ├── root │ ├── etc │ │ └── my.cnf │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ ├── mysqld-master │ │ ├── mysqld-slave │ │ ├── run-mysqld │ │ ├── run-mysqld-master │ │ └── run-mysqld-slave │ │ ├── libexec │ │ └── container-setup │ │ └── share │ │ └── container-scripts │ │ └── mysql │ │ ├── common.sh │ │ ├── helpers.sh │ │ ├── my-base.cnf.template │ │ ├── my-master.cnf.template │ │ ├── my-paas.cnf.template │ │ ├── my-slave.cnf.template │ │ ├── passwd-change.sh │ │ ├── post-init.sh │ │ ├── scl_enable │ │ ├── validate-replication-variables.sh │ │ └── validate-variables.sh └── test │ └── run ├── rhel7.nginx16 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ └── scl_enable ├── run-nginx16.sh └── test │ ├── run.sh │ └── utils.sh ├── rhel7.nodejs010 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── npm_global_module_list │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── test-app │ ├── README.md │ ├── iisnode.yml │ ├── package.json │ ├── server.js │ └── web.config ├── rhel7.perl516 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── httpd.conf │ │ ├── httpdconf.sed │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── sample-test-app │ ├── cpanfile │ └── index.pl ├── rhel7.php54 ├── Dockerfile ├── README.generation ├── README.md ├── enablephp54.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.php55 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── httpdconf.sed │ │ ├── php.d │ │ └── opcache.ini.template │ │ ├── php.ini.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── test-app │ ├── composer.json │ └── index.php ├── rhel7.postgresql92 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── root │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ ├── run-postgresql │ │ ├── run-postgresql-master │ │ └── run-postgresql-slave │ │ ├── libexec │ │ └── fix-permissions │ │ └── share │ │ └── container-scripts │ │ └── postgresql │ │ ├── common.sh │ │ ├── openshift-custom-postgresql.conf.template │ │ ├── openshift-custom-recovery.conf.template │ │ └── scl_enable └── test │ └── run ├── rhel7.python27 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── generate_container_user │ │ ├── passwd.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── django-test-app │ ├── .gitignore │ ├── manage.py │ ├── project │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── requirements.txt │ ├── run │ ├── setup-test-app │ ├── .gitignore │ ├── setup.py │ └── testapp.py │ └── standalone-test-app │ ├── app.py │ └── requirements.txt ├── rhel7.python33 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── generate_container_user │ │ ├── passwd.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── django-test-app │ ├── .gitignore │ ├── manage.py │ ├── project │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── requirements.txt │ ├── run │ ├── setup-test-app │ ├── .gitignore │ ├── setup.py │ └── testapp.py │ └── standalone-test-app │ ├── app.py │ └── requirements.txt ├── rhel7.rh-mariadb100 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── copy-from-mysql.sh ├── root │ ├── etc │ │ └── my.cnf │ └── usr │ │ ├── bin │ │ ├── cgroup-limits │ │ ├── container-entrypoint │ │ ├── mysqld-master │ │ ├── mysqld-slave │ │ ├── run-mysqld │ │ ├── run-mysqld-master │ │ └── run-mysqld-slave │ │ ├── libexec │ │ └── container-setup │ │ └── share │ │ └── container-scripts │ │ └── mysql │ │ ├── common.sh │ │ ├── helpers.sh │ │ ├── my-base.cnf.template │ │ ├── my-master.cnf.template │ │ ├── my-paas.cnf.template │ │ ├── my-repl-gtid.cnf.template │ │ ├── my-slave.cnf.template │ │ ├── my-tuning.cnf.template │ │ ├── passwd-change.sh │ │ ├── post-init.sh │ │ ├── scl_enable │ │ ├── validate-replication-variables.sh │ │ └── validate-variables.sh └── test │ └── run ├── rhel7.rh-mariadb101 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── copy-from-mysql.sh ├── root │ ├── etc │ │ └── my.cnf │ └── usr │ │ ├── bin │ │ ├── cgroup-limits │ │ ├── container-entrypoint │ │ ├── mysqld-master │ │ ├── mysqld-slave │ │ ├── run-mysqld │ │ ├── run-mysqld-master │ │ └── run-mysqld-slave │ │ ├── libexec │ │ └── container-setup │ │ └── share │ │ └── container-scripts │ │ └── mysql │ │ ├── common.sh │ │ ├── helpers.sh │ │ ├── my-base.cnf.template │ │ ├── my-master.cnf.template │ │ ├── my-paas.cnf.template │ │ ├── my-repl-gtid.cnf.template │ │ ├── my-slave.cnf.template │ │ ├── my-tuning.cnf.template │ │ ├── passwd-change.sh │ │ ├── post-init.sh │ │ ├── scl_enable │ │ ├── validate-replication-variables.sh │ │ └── validate-variables.sh └── test │ └── run ├── rhel7.rh-mongodb26 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── root │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ └── run-mongod │ │ ├── libexec │ │ └── fix-permissions │ │ └── share │ │ └── container-scripts │ │ └── mongodb │ │ ├── common.sh │ │ ├── initiate_replica.sh │ │ ├── mongodb.conf.template │ │ ├── replica_supervisor.sh │ │ └── scl_enable └── test │ └── run ├── rhel7.rh-mongodb32 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── root │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ └── run-mongod │ │ ├── libexec │ │ └── fix-permissions │ │ └── share │ │ └── container-scripts │ │ └── mongodb │ │ ├── common.sh │ │ ├── initiate_replica.sh │ │ ├── mongodb.conf.template │ │ ├── replica_supervisor.sh │ │ └── scl_enable └── test │ └── run ├── rhel7.rh-mysql56 ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── examples │ └── replica │ │ ├── README.md │ │ ├── mysql_replica.json │ │ ├── teardown.sh │ │ └── volume.json ├── root │ ├── etc │ │ └── my.cnf │ └── usr │ │ ├── bin │ │ ├── cgroup-limits │ │ ├── container-entrypoint │ │ ├── mysqld-master │ │ ├── mysqld-slave │ │ ├── run-mysqld │ │ ├── run-mysqld-master │ │ └── run-mysqld-slave │ │ ├── libexec │ │ └── container-setup │ │ └── share │ │ └── container-scripts │ │ └── mysql │ │ ├── common.sh │ │ ├── helpers.sh │ │ ├── my-base.cnf.template │ │ ├── my-master.cnf.template │ │ ├── my-paas.cnf.template │ │ ├── my-repl-gtid.cnf.template │ │ ├── my-slave.cnf.template │ │ ├── my-tuning.cnf.template │ │ ├── passwd-change.sh │ │ ├── post-init.sh │ │ ├── scl_enable │ │ ├── validate-replication-variables.sh │ │ └── validate-variables.sh └── test │ └── run ├── rhel7.rh-nginx18 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ ├── etc │ │ ├── generate_container_user │ │ ├── passwd.template │ │ └── scl_enable │ └── nginxconf.sed ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── test-app │ ├── index.html │ ├── index2.html │ └── nginx-cfg │ └── default.conf ├── rhel7.rh-nodejs4 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── npm_global_module_list │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── test-app │ ├── README.md │ ├── iisnode.yml │ ├── package.json │ ├── server.js │ └── web.config ├── rhel7.rh-passenger40 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── atomic-contrib │ └── usr │ │ ├── bin │ │ ├── atomic-install.sh │ │ └── atomic-uninstall.sh │ │ └── share │ │ └── atomic │ │ └── template.service ├── contrib │ ├── .gemrc │ └── etc │ │ ├── httpdconf.sed │ │ ├── passenger.conf │ │ ├── puma.cfg │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── puma-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ ├── rack-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ └── run ├── rhel7.rh-perl520 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── httpd.conf │ │ ├── httpdconf.sed │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── binpath │ ├── cpanfile │ └── index.pl │ ├── psgi-variables │ ├── application1.psgi │ ├── application2.psgi │ └── cpanfile │ ├── psgi │ ├── application.psgi │ └── cpanfile │ ├── run │ ├── sample-test-app │ ├── cpanfile │ └── index.pl │ └── warningonstderr │ └── index.pl ├── rhel7.rh-php56 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── conf.d │ │ └── 50-mpm-tuning.conf.template │ │ ├── httpdconf.sed │ │ ├── php.d │ │ └── 10-opcache.ini.template │ │ ├── php.ini.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── test-app │ ├── composer.json │ └── index.php ├── rhel7.rh-postgresql94 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── root │ └── usr │ │ ├── bin │ │ ├── cgroup-limits │ │ ├── container-entrypoint │ │ ├── run-postgresql │ │ ├── run-postgresql-master │ │ └── run-postgresql-slave │ │ ├── libexec │ │ └── fix-permissions │ │ └── share │ │ └── container-scripts │ │ └── postgresql │ │ ├── common.sh │ │ ├── openshift-custom-postgresql.conf.template │ │ ├── openshift-custom-recovery.conf.template │ │ └── scl_enable └── test │ └── run ├── rhel7.rh-postgresql95 ├── .gitignore ├── Dockerfile ├── README.generation ├── root │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ ├── run-postgresql │ │ ├── run-postgresql-master │ │ └── run-postgresql-slave │ │ ├── libexec │ │ └── fix-permissions │ │ └── share │ │ └── container-scripts │ │ └── postgresql │ │ ├── common.sh │ │ ├── openshift-custom-postgresql.conf.template │ │ ├── openshift-custom-recovery.conf.template │ │ └── scl_enable └── test │ └── run ├── rhel7.rh-python34 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── generate_container_user │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── django-test-app │ ├── .gitignore │ ├── manage.py │ ├── project │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── requirements.txt │ ├── run │ ├── setup-test-app │ ├── .gitignore │ ├── setup.py │ └── testapp.py │ └── standalone-test-app │ ├── app.py │ └── requirements.txt ├── rhel7.rh-python35 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── generate_container_user │ │ ├── passwd.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── django-test-app │ ├── .gitignore │ ├── manage.py │ ├── project │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── requirements.txt │ ├── run │ ├── setup-test-app │ ├── .gitignore │ ├── setup.py │ └── testapp.py │ └── standalone-test-app │ ├── app.py │ └── requirements.txt ├── rhel7.rh-ror41 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── .gemrc │ ├── bin │ │ ├── container-entrypoint │ │ └── usage │ └── etc │ │ └── scl_enable └── test │ ├── run.sh │ └── utils.sh ├── rhel7.rh-ror42 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── .gemrc │ ├── bin │ │ ├── container-entrypoint │ │ └── usage │ └── etc │ │ └── scl_enable ├── test │ └── run └── utils.sh ├── rhel7.rh-ruby22 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── .gemrc │ └── etc │ │ ├── puma.cfg │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── puma-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ ├── rack-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ └── run ├── rhel7.rh-ruby23 ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── contrib │ ├── .gemrc │ └── etc │ │ ├── puma.cfg │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── puma-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ ├── rack-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ └── run ├── rhel7.rh-varnish4 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ └── etc │ │ ├── generate_container_user │ │ ├── passwd.template │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── run │ └── test-app │ └── default.vcl ├── rhel7.ror40 ├── Dockerfile ├── README.generation ├── README.md ├── enableror40.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.ruby193 ├── Dockerfile ├── README.generation ├── README.md ├── enableruby193.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.ruby20 ├── .gitignore ├── Dockerfile ├── README.generation ├── README.md ├── contrib │ ├── .gemrc │ └── etc │ │ ├── puma.cfg │ │ └── scl_enable ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── puma-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ ├── rack-test-app │ ├── Gemfile │ ├── Gemfile.lock │ ├── app.rb │ └── config.ru │ └── run ├── rhel7.ruby200 ├── Dockerfile ├── README.generation ├── README.md ├── enableruby200.sh ├── etc │ └── profile.d │ │ └── cont-env.sh ├── root │ └── .bashrc └── usr │ ├── bin │ ├── container-entrypoint │ └── container-usage │ └── share │ ├── cont-docs │ ├── 70-general.txt │ └── README │ ├── cont-entry │ └── cont-env.sh │ ├── cont-layer │ └── README │ ├── cont-lib │ ├── autoload │ │ └── README │ ├── cont-env.sh │ ├── cont-lib.sh │ └── parser-simple-config.sh │ └── cont-volume │ └── README ├── rhel7.s2i-base ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── LICENSE ├── Makefile ├── README.generation ├── README.md ├── bin │ ├── base-usage │ ├── cgroup-limits │ ├── container-entrypoint │ └── fix-permissions ├── contrib │ └── scl_enable ├── hack │ └── build.sh └── test │ └── run ├── rhel7.sti-base ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.generation ├── README.md ├── bin │ ├── base-usage │ ├── cgroup-limits │ ├── container-entrypoint │ └── fix-permissions ├── contrib │ └── scl_enable ├── hack │ └── build.sh └── test │ └── run ├── rhel7.thermostat1-agent ├── .gitignore ├── Dockerfile ├── Dockerfile.rhel7 ├── README.generation ├── README.md ├── root │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ └── run-thermostat-agent │ │ └── share │ │ └── container-scripts │ │ └── thermostat │ │ └── scl_enable └── thermostat-user-home-config │ └── data │ ├── mongodb-user-done.stamp │ └── setup-complete.stamp ├── rhscl-charter.md └── utils.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-3-dyninst/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-dyninst/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-3-dyninst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-dyninst/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-3-dyninst/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-dyninst/root/.bashrc -------------------------------------------------------------------------------- /centos6.devtoolset-3-eclipse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-eclipse/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-3-eclipse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-eclipse/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-3-eclipse/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-eclipse/root/.bashrc -------------------------------------------------------------------------------- /centos6.devtoolset-3-elfutils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-elfutils/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-3-elfutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-elfutils/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-3-oprofile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-oprofile/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-3-oprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-oprofile/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-3-systemtap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-systemtap/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-3-systemtap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-systemtap/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-3-toolchain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-toolchain/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-3-toolchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-toolchain/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-3-valgrind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-valgrind/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-3-valgrind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3-valgrind/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-3/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3/README.generation -------------------------------------------------------------------------------- /centos6.devtoolset-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-3/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-3/root/.bashrc -------------------------------------------------------------------------------- /centos6.devtoolset-4-dyninst/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-dyninst/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-4-dyninst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-dyninst/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-4-dyninst/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-dyninst/root/.bashrc -------------------------------------------------------------------------------- /centos6.devtoolset-4-elfutils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-elfutils/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-4-elfutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-elfutils/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-4-oprofile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-oprofile/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-4-oprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-oprofile/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-4-systemtap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-systemtap/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-4-systemtap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-systemtap/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-4-toolchain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-toolchain/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-4-toolchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-toolchain/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-4-valgrind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-valgrind/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-4-valgrind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4-valgrind/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4/Dockerfile -------------------------------------------------------------------------------- /centos6.devtoolset-4/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4/README.generation -------------------------------------------------------------------------------- /centos6.devtoolset-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4/README.md -------------------------------------------------------------------------------- /centos6.devtoolset-4/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos6.devtoolset-4/root/.bashrc -------------------------------------------------------------------------------- /centos7.devtoolset-3-dyninst/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-dyninst/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-3-dyninst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-dyninst/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-3-dyninst/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-dyninst/root/.bashrc -------------------------------------------------------------------------------- /centos7.devtoolset-3-eclipse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-eclipse/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-3-eclipse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-eclipse/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-3-eclipse/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-eclipse/root/.bashrc -------------------------------------------------------------------------------- /centos7.devtoolset-3-elfutils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-elfutils/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-3-elfutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-elfutils/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-3-oprofile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-oprofile/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-3-oprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-oprofile/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-3-systemtap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-systemtap/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-3-systemtap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-systemtap/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-3-toolchain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-toolchain/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-3-toolchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-toolchain/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-3-valgrind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-valgrind/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-3-valgrind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3-valgrind/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-3/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3/README.generation -------------------------------------------------------------------------------- /centos7.devtoolset-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-3/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-3/root/.bashrc -------------------------------------------------------------------------------- /centos7.devtoolset-4-dyninst/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-dyninst/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-4-dyninst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-dyninst/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-4-dyninst/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-dyninst/root/.bashrc -------------------------------------------------------------------------------- /centos7.devtoolset-4-elfutils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-elfutils/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-4-elfutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-elfutils/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-4-oprofile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-oprofile/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-4-oprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-oprofile/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-4-systemtap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-systemtap/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-4-systemtap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-systemtap/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-4-toolchain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-toolchain/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-4-toolchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-toolchain/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-4-valgrind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-valgrind/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-4-valgrind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4-valgrind/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4/Dockerfile -------------------------------------------------------------------------------- /centos7.devtoolset-4/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4/README.generation -------------------------------------------------------------------------------- /centos7.devtoolset-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4/README.md -------------------------------------------------------------------------------- /centos7.devtoolset-4/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.devtoolset-4/root/.bashrc -------------------------------------------------------------------------------- /centos7.httpd24/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.httpd24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.httpd24/Dockerfile -------------------------------------------------------------------------------- /centos7.httpd24/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.httpd24/README.generation -------------------------------------------------------------------------------- /centos7.httpd24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.httpd24/README.md -------------------------------------------------------------------------------- /centos7.httpd24/contrib/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.httpd24/contrib/scl_enable -------------------------------------------------------------------------------- /centos7.httpd24/run-httpd24.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.httpd24/run-httpd24.sh -------------------------------------------------------------------------------- /centos7.httpd24/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.httpd24/test/run -------------------------------------------------------------------------------- /centos7.mongodb24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mongodb24/Dockerfile -------------------------------------------------------------------------------- /centos7.mongodb24/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mongodb24/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.mongodb24/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mongodb24/README.generation -------------------------------------------------------------------------------- /centos7.mongodb24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mongodb24/README.md -------------------------------------------------------------------------------- /centos7.mongodb24/contrib/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mongodb24/contrib/common.sh -------------------------------------------------------------------------------- /centos7.mongodb24/contrib/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mongodb24/contrib/scl_enable -------------------------------------------------------------------------------- /centos7.mongodb24/run-mongod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mongodb24/run-mongod.sh -------------------------------------------------------------------------------- /centos7.mongodb24/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mongodb24/test/run -------------------------------------------------------------------------------- /centos7.mysql55/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mysql55/Dockerfile -------------------------------------------------------------------------------- /centos7.mysql55/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mysql55/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.mysql55/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mysql55/README.generation -------------------------------------------------------------------------------- /centos7.mysql55/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mysql55/README.md -------------------------------------------------------------------------------- /centos7.mysql55/root/etc/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mysql55/root/etc/my.cnf -------------------------------------------------------------------------------- /centos7.mysql55/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | -------------------------------------------------------------------------------- /centos7.mysql55/root/usr/bin/mysqld-master: -------------------------------------------------------------------------------- 1 | run-mysqld-master -------------------------------------------------------------------------------- /centos7.mysql55/root/usr/bin/mysqld-slave: -------------------------------------------------------------------------------- 1 | run-mysqld-slave -------------------------------------------------------------------------------- /centos7.mysql55/root/usr/bin/run-mysqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mysql55/root/usr/bin/run-mysqld -------------------------------------------------------------------------------- /centos7.mysql55/root/usr/share/container-scripts/mysql/post-init.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.mysql55/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.mysql55/test/run -------------------------------------------------------------------------------- /centos7.nginx16/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.nginx16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nginx16/Dockerfile -------------------------------------------------------------------------------- /centos7.nginx16/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nginx16/README.generation -------------------------------------------------------------------------------- /centos7.nginx16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nginx16/README.md -------------------------------------------------------------------------------- /centos7.nginx16/contrib/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nginx16/contrib/scl_enable -------------------------------------------------------------------------------- /centos7.nginx16/run-nginx16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nginx16/run-nginx16.sh -------------------------------------------------------------------------------- /centos7.nginx16/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nginx16/test/run -------------------------------------------------------------------------------- /centos7.nodejs010/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/Dockerfile -------------------------------------------------------------------------------- /centos7.nodejs010/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.nodejs010/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/README.generation -------------------------------------------------------------------------------- /centos7.nodejs010/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/README.md -------------------------------------------------------------------------------- /centos7.nodejs010/contrib/etc/npm_global_module_list: -------------------------------------------------------------------------------- 1 | async 2 | mime 3 | mkdirp 4 | qs 5 | minimatch 6 | -------------------------------------------------------------------------------- /centos7.nodejs010/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.nodejs010/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.nodejs010/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/s2i/bin/run -------------------------------------------------------------------------------- /centos7.nodejs010/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.nodejs010/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/test/run -------------------------------------------------------------------------------- /centos7.nodejs010/test/test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/test/test-app/README.md -------------------------------------------------------------------------------- /centos7.nodejs010/test/test-app/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.nodejs010/test/test-app/server.js -------------------------------------------------------------------------------- /centos7.perl516/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/Dockerfile -------------------------------------------------------------------------------- /centos7.perl516/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.perl516/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/README.generation -------------------------------------------------------------------------------- /centos7.perl516/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/README.md -------------------------------------------------------------------------------- /centos7.perl516/contrib/etc/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/contrib/etc/httpd.conf -------------------------------------------------------------------------------- /centos7.perl516/contrib/etc/httpdconf.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/contrib/etc/httpdconf.sed -------------------------------------------------------------------------------- /centos7.perl516/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.perl516/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.perl516/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/s2i/bin/run -------------------------------------------------------------------------------- /centos7.perl516/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.perl516/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.perl516/test/run -------------------------------------------------------------------------------- /centos7.perl516/test/sample-test-app/cpanfile: -------------------------------------------------------------------------------- 1 | requires 'Math::Round', '== 0.06'; -------------------------------------------------------------------------------- /centos7.php55/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/Dockerfile -------------------------------------------------------------------------------- /centos7.php55/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.php55/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/README.generation -------------------------------------------------------------------------------- /centos7.php55/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/README.md -------------------------------------------------------------------------------- /centos7.php55/contrib/etc/httpdconf.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/contrib/etc/httpdconf.sed -------------------------------------------------------------------------------- /centos7.php55/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.php55/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.php55/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/s2i/bin/run -------------------------------------------------------------------------------- /centos7.php55/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.php55/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/test/run -------------------------------------------------------------------------------- /centos7.php55/test/test-app/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/test/test-app/composer.json -------------------------------------------------------------------------------- /centos7.php55/test/test-app/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.php55/test/test-app/index.php -------------------------------------------------------------------------------- /centos7.postgresql92/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.postgresql92/Dockerfile -------------------------------------------------------------------------------- /centos7.postgresql92/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.postgresql92/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.postgresql92/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.postgresql92/README.generation -------------------------------------------------------------------------------- /centos7.postgresql92/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.postgresql92/README.md -------------------------------------------------------------------------------- /centos7.postgresql92/contrib/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.postgresql92/contrib/common.sh -------------------------------------------------------------------------------- /centos7.postgresql92/contrib/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.postgresql92/contrib/scl_enable -------------------------------------------------------------------------------- /centos7.postgresql92/run-postgresql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.postgresql92/run-postgresql.sh -------------------------------------------------------------------------------- /centos7.postgresql92/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.postgresql92/test/run -------------------------------------------------------------------------------- /centos7.python27/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python27/Dockerfile -------------------------------------------------------------------------------- /centos7.python27/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python27/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.python27/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python27/README.generation -------------------------------------------------------------------------------- /centos7.python27/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python27/README.md -------------------------------------------------------------------------------- /centos7.python27/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python27/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.python27/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python27/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.python27/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python27/s2i/bin/run -------------------------------------------------------------------------------- /centos7.python27/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python27/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.python27/test/django-test-app/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.python27/test/django-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.1 2 | -------------------------------------------------------------------------------- /centos7.python27/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python27/test/run -------------------------------------------------------------------------------- /centos7.python27/test/standalone-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /centos7.python33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python33/Dockerfile -------------------------------------------------------------------------------- /centos7.python33/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python33/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.python33/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python33/README.generation -------------------------------------------------------------------------------- /centos7.python33/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python33/README.md -------------------------------------------------------------------------------- /centos7.python33/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python33/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.python33/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python33/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.python33/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python33/s2i/bin/run -------------------------------------------------------------------------------- /centos7.python33/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python33/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.python33/test/django-test-app/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.python33/test/django-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.1 2 | -------------------------------------------------------------------------------- /centos7.python33/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.python33/test/run -------------------------------------------------------------------------------- /centos7.python33/test/standalone-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /centos7.rh-mariadb100/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.rh-mariadb100/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mariadb100/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-mariadb100/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /centos7.rh-mariadb100/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mariadb100/README.generation -------------------------------------------------------------------------------- /centos7.rh-mariadb100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mariadb100/README.md -------------------------------------------------------------------------------- /centos7.rh-mariadb100/root/etc/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mariadb100/root/etc/my.cnf -------------------------------------------------------------------------------- /centos7.rh-mariadb100/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | -------------------------------------------------------------------------------- /centos7.rh-mariadb100/root/usr/bin/mysqld-master: -------------------------------------------------------------------------------- 1 | run-mysqld-master -------------------------------------------------------------------------------- /centos7.rh-mariadb100/root/usr/bin/mysqld-slave: -------------------------------------------------------------------------------- 1 | run-mysqld-slave -------------------------------------------------------------------------------- /centos7.rh-mariadb100/root/usr/share/container-scripts/mysql/my-repl-gtid.cnf.template: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | 3 | log-slave-updates = ON 4 | -------------------------------------------------------------------------------- /centos7.rh-mariadb100/root/usr/share/container-scripts/mysql/post-init.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.rh-mariadb100/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mariadb100/test/run -------------------------------------------------------------------------------- /centos7.rh-mariadb101/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.rh-mariadb101/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mariadb101/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-mariadb101/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /centos7.rh-mariadb101/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mariadb101/README.generation -------------------------------------------------------------------------------- /centos7.rh-mariadb101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mariadb101/README.md -------------------------------------------------------------------------------- /centos7.rh-mariadb101/root/etc/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mariadb101/root/etc/my.cnf -------------------------------------------------------------------------------- /centos7.rh-mariadb101/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | -------------------------------------------------------------------------------- /centos7.rh-mariadb101/root/usr/bin/mysqld-master: -------------------------------------------------------------------------------- 1 | run-mysqld-master -------------------------------------------------------------------------------- /centos7.rh-mariadb101/root/usr/bin/mysqld-slave: -------------------------------------------------------------------------------- 1 | run-mysqld-slave -------------------------------------------------------------------------------- /centos7.rh-mariadb101/root/usr/share/container-scripts/mysql/my-repl-gtid.cnf.template: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | 3 | log-slave-updates = ON 4 | -------------------------------------------------------------------------------- /centos7.rh-mariadb101/root/usr/share/container-scripts/mysql/post-init.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.rh-mariadb101/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mariadb101/test/run -------------------------------------------------------------------------------- /centos7.rh-mongodb26/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb26/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-mongodb26/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb26/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-mongodb26/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb26/README.generation -------------------------------------------------------------------------------- /centos7.rh-mongodb26/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb26/README.md -------------------------------------------------------------------------------- /centos7.rh-mongodb26/contrib/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb26/contrib/common.sh -------------------------------------------------------------------------------- /centos7.rh-mongodb26/contrib/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb26/contrib/scl_enable -------------------------------------------------------------------------------- /centos7.rh-mongodb26/run-mongod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb26/run-mongod.sh -------------------------------------------------------------------------------- /centos7.rh-mongodb26/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb26/test/run -------------------------------------------------------------------------------- /centos7.rh-mongodb32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb32/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-mongodb32/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb32/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-mongodb32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb32/README.md -------------------------------------------------------------------------------- /centos7.rh-mongodb32/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | -------------------------------------------------------------------------------- /centos7.rh-mongodb32/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mongodb32/test/run -------------------------------------------------------------------------------- /centos7.rh-mysql56/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mysql56/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-mysql56/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mysql56/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-mysql56/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mysql56/README.generation -------------------------------------------------------------------------------- /centos7.rh-mysql56/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mysql56/README.md -------------------------------------------------------------------------------- /centos7.rh-mysql56/root/etc/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mysql56/root/etc/my.cnf -------------------------------------------------------------------------------- /centos7.rh-mysql56/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | -------------------------------------------------------------------------------- /centos7.rh-mysql56/root/usr/bin/mysqld-master: -------------------------------------------------------------------------------- 1 | run-mysqld-master -------------------------------------------------------------------------------- /centos7.rh-mysql56/root/usr/bin/mysqld-slave: -------------------------------------------------------------------------------- 1 | run-mysqld-slave -------------------------------------------------------------------------------- /centos7.rh-mysql56/root/usr/share/container-scripts/mysql/post-init.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.rh-mysql56/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-mysql56/test/run -------------------------------------------------------------------------------- /centos7.rh-nodejs4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-nodejs4/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-nodejs4/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-nodejs4/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-nodejs4/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-nodejs4/README.generation -------------------------------------------------------------------------------- /centos7.rh-nodejs4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-nodejs4/README.md -------------------------------------------------------------------------------- /centos7.rh-nodejs4/contrib/etc/npm_global_module_list: -------------------------------------------------------------------------------- 1 | async 2 | mime 3 | mkdirp 4 | qs 5 | minimatch 6 | -------------------------------------------------------------------------------- /centos7.rh-nodejs4/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-nodejs4/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.rh-nodejs4/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-nodejs4/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.rh-nodejs4/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-nodejs4/s2i/bin/run -------------------------------------------------------------------------------- /centos7.rh-nodejs4/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-nodejs4/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.rh-nodejs4/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-nodejs4/test/run -------------------------------------------------------------------------------- /centos7.rh-passenger40/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.rh-passenger40/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-passenger40/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-passenger40/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-passenger40/README.generation -------------------------------------------------------------------------------- /centos7.rh-passenger40/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-passenger40/README.md -------------------------------------------------------------------------------- /centos7.rh-passenger40/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-passenger40/contrib/.gemrc -------------------------------------------------------------------------------- /centos7.rh-passenger40/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-passenger40/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.rh-passenger40/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-passenger40/s2i/bin/run -------------------------------------------------------------------------------- /centos7.rh-passenger40/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-passenger40/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.rh-passenger40/test/puma-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /centos7.rh-passenger40/test/puma-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /centos7.rh-passenger40/test/rack-test-app/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'sinatra' 4 | -------------------------------------------------------------------------------- /centos7.rh-passenger40/test/rack-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /centos7.rh-passenger40/test/rack-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /centos7.rh-passenger40/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-passenger40/test/run -------------------------------------------------------------------------------- /centos7.rh-perl520/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-perl520/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-perl520/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-perl520/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-perl520/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-perl520/README.generation -------------------------------------------------------------------------------- /centos7.rh-perl520/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-perl520/README.md -------------------------------------------------------------------------------- /centos7.rh-perl520/contrib/etc/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-perl520/contrib/etc/httpd.conf -------------------------------------------------------------------------------- /centos7.rh-perl520/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-perl520/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.rh-perl520/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-perl520/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.rh-perl520/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-perl520/s2i/bin/run -------------------------------------------------------------------------------- /centos7.rh-perl520/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-perl520/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.rh-perl520/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-perl520/test/run -------------------------------------------------------------------------------- /centos7.rh-perl520/test/sample-test-app/cpanfile: -------------------------------------------------------------------------------- 1 | requires 'Math::Round', '== 0.06'; -------------------------------------------------------------------------------- /centos7.rh-php56/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-php56/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-php56/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-php56/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-php56/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-php56/README.generation -------------------------------------------------------------------------------- /centos7.rh-php56/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-php56/README.md -------------------------------------------------------------------------------- /centos7.rh-php56/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-php56/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.rh-php56/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-php56/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.rh-php56/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-php56/s2i/bin/run -------------------------------------------------------------------------------- /centos7.rh-php56/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-php56/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.rh-php56/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-php56/test/run -------------------------------------------------------------------------------- /centos7.rh-php56/test/test-app/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-php56/test/test-app/index.php -------------------------------------------------------------------------------- /centos7.rh-postgresql94/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-postgresql94/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-postgresql94/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-postgresql94/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-postgresql94/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-postgresql94/README.generation -------------------------------------------------------------------------------- /centos7.rh-postgresql94/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-postgresql94/README.md -------------------------------------------------------------------------------- /centos7.rh-postgresql94/contrib/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-postgresql94/contrib/common.sh -------------------------------------------------------------------------------- /centos7.rh-postgresql94/run-postgresql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-postgresql94/run-postgresql.sh -------------------------------------------------------------------------------- /centos7.rh-postgresql94/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-postgresql94/test/run -------------------------------------------------------------------------------- /centos7.rh-postgresql95/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-postgresql95/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-postgresql95/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-postgresql95/README.md -------------------------------------------------------------------------------- /centos7.rh-postgresql95/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /centos7.rh-postgresql95/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-postgresql95/test/run -------------------------------------------------------------------------------- /centos7.rh-python34/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python34/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-python34/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python34/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-python34/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python34/README.generation -------------------------------------------------------------------------------- /centos7.rh-python34/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python34/README.md -------------------------------------------------------------------------------- /centos7.rh-python34/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python34/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.rh-python34/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python34/s2i/bin/run -------------------------------------------------------------------------------- /centos7.rh-python34/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python34/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.rh-python34/test/django-test-app/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.rh-python34/test/django-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.1 2 | -------------------------------------------------------------------------------- /centos7.rh-python34/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python34/test/run -------------------------------------------------------------------------------- /centos7.rh-python34/test/standalone-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /centos7.rh-python35/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python35/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-python35/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python35/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-python35/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python35/README.generation -------------------------------------------------------------------------------- /centos7.rh-python35/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python35/README.md -------------------------------------------------------------------------------- /centos7.rh-python35/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python35/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.rh-python35/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python35/s2i/bin/run -------------------------------------------------------------------------------- /centos7.rh-python35/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python35/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.rh-python35/test/django-test-app/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /centos7.rh-python35/test/django-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.1 2 | -------------------------------------------------------------------------------- /centos7.rh-python35/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-python35/test/run -------------------------------------------------------------------------------- /centos7.rh-python35/test/standalone-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /centos7.rh-ror41/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror41/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-ror41/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /centos7.rh-ror41/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror41/README.generation -------------------------------------------------------------------------------- /centos7.rh-ror41/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror41/README.md -------------------------------------------------------------------------------- /centos7.rh-ror41/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror41/contrib/.gemrc -------------------------------------------------------------------------------- /centos7.rh-ror41/contrib/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | 7 | -------------------------------------------------------------------------------- /centos7.rh-ror41/contrib/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror41/contrib/bin/usage -------------------------------------------------------------------------------- /centos7.rh-ror41/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror41/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.rh-ror41/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror41/test/run -------------------------------------------------------------------------------- /centos7.rh-ror42/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror42/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-ror42/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror42/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-ror42/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror42/README.generation -------------------------------------------------------------------------------- /centos7.rh-ror42/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror42/README.md -------------------------------------------------------------------------------- /centos7.rh-ror42/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror42/contrib/.gemrc -------------------------------------------------------------------------------- /centos7.rh-ror42/contrib/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | 7 | -------------------------------------------------------------------------------- /centos7.rh-ror42/contrib/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror42/contrib/bin/usage -------------------------------------------------------------------------------- /centos7.rh-ror42/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror42/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.rh-ror42/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ror42/test/run -------------------------------------------------------------------------------- /centos7.rh-ruby22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby22/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-ruby22/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby22/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-ruby22/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby22/README.generation -------------------------------------------------------------------------------- /centos7.rh-ruby22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby22/README.md -------------------------------------------------------------------------------- /centos7.rh-ruby22/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby22/contrib/.gemrc -------------------------------------------------------------------------------- /centos7.rh-ruby22/contrib/etc/puma.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby22/contrib/etc/puma.cfg -------------------------------------------------------------------------------- /centos7.rh-ruby22/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby22/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.rh-ruby22/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby22/s2i/bin/run -------------------------------------------------------------------------------- /centos7.rh-ruby22/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby22/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.rh-ruby22/test/puma-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /centos7.rh-ruby22/test/puma-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /centos7.rh-ruby22/test/rack-test-app/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'sinatra' 4 | -------------------------------------------------------------------------------- /centos7.rh-ruby22/test/rack-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /centos7.rh-ruby22/test/rack-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /centos7.rh-ruby22/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby22/test/run -------------------------------------------------------------------------------- /centos7.rh-ruby23/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby23/Dockerfile -------------------------------------------------------------------------------- /centos7.rh-ruby23/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby23/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.rh-ruby23/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby23/README.generation -------------------------------------------------------------------------------- /centos7.rh-ruby23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby23/README.md -------------------------------------------------------------------------------- /centos7.rh-ruby23/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby23/contrib/.gemrc -------------------------------------------------------------------------------- /centos7.rh-ruby23/contrib/etc/puma.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby23/contrib/etc/puma.cfg -------------------------------------------------------------------------------- /centos7.rh-ruby23/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby23/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.rh-ruby23/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby23/s2i/bin/run -------------------------------------------------------------------------------- /centos7.rh-ruby23/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby23/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.rh-ruby23/test/puma-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /centos7.rh-ruby23/test/puma-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /centos7.rh-ruby23/test/rack-test-app/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'sinatra' 4 | -------------------------------------------------------------------------------- /centos7.rh-ruby23/test/rack-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /centos7.rh-ruby23/test/rack-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /centos7.rh-ruby23/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.rh-ruby23/test/run -------------------------------------------------------------------------------- /centos7.ruby20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/Dockerfile -------------------------------------------------------------------------------- /centos7.ruby20/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.ruby20/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/README.generation -------------------------------------------------------------------------------- /centos7.ruby20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/README.md -------------------------------------------------------------------------------- /centos7.ruby20/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/contrib/.gemrc -------------------------------------------------------------------------------- /centos7.ruby20/contrib/etc/puma.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/contrib/etc/puma.cfg -------------------------------------------------------------------------------- /centos7.ruby20/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/contrib/etc/scl_enable -------------------------------------------------------------------------------- /centos7.ruby20/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/s2i/bin/assemble -------------------------------------------------------------------------------- /centos7.ruby20/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/s2i/bin/run -------------------------------------------------------------------------------- /centos7.ruby20/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/s2i/bin/usage -------------------------------------------------------------------------------- /centos7.ruby20/test/puma-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /centos7.ruby20/test/puma-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /centos7.ruby20/test/rack-test-app/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'sinatra' 4 | -------------------------------------------------------------------------------- /centos7.ruby20/test/rack-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /centos7.ruby20/test/rack-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /centos7.ruby20/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.ruby20/test/run -------------------------------------------------------------------------------- /centos7.s2i-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.s2i-base/Dockerfile -------------------------------------------------------------------------------- /centos7.s2i-base/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.s2i-base/Dockerfile.rhel7 -------------------------------------------------------------------------------- /centos7.s2i-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.s2i-base/LICENSE -------------------------------------------------------------------------------- /centos7.s2i-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.s2i-base/Makefile -------------------------------------------------------------------------------- /centos7.s2i-base/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.s2i-base/README.generation -------------------------------------------------------------------------------- /centos7.s2i-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.s2i-base/README.md -------------------------------------------------------------------------------- /centos7.s2i-base/bin/base-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.s2i-base/bin/base-usage -------------------------------------------------------------------------------- /centos7.s2i-base/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | 7 | -------------------------------------------------------------------------------- /centos7.s2i-base/contrib/scl_enable: -------------------------------------------------------------------------------- 1 | # This file contains automatic SCL enablement. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | -------------------------------------------------------------------------------- /centos7.s2i-base/hack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.s2i-base/hack/build.sh -------------------------------------------------------------------------------- /centos7.s2i-base/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/centos7.s2i-base/test/run -------------------------------------------------------------------------------- /config.generated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/config.generated -------------------------------------------------------------------------------- /config.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/config.local -------------------------------------------------------------------------------- /config.remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/config.remote -------------------------------------------------------------------------------- /regenerate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/regenerate.sh -------------------------------------------------------------------------------- /rhel6.devtoolset-3-dyninst/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-dyninst/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-3-dyninst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-dyninst/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-3-dyninst/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-dyninst/root/.bashrc -------------------------------------------------------------------------------- /rhel6.devtoolset-3-eclipse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-eclipse/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-3-eclipse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-eclipse/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-3-eclipse/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-eclipse/root/.bashrc -------------------------------------------------------------------------------- /rhel6.devtoolset-3-elfutils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-elfutils/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-3-elfutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-elfutils/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-3-oprofile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-oprofile/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-3-oprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-oprofile/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-3-systemtap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-systemtap/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-3-systemtap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-systemtap/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-3-toolchain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-toolchain/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-3-toolchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-toolchain/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-3-valgrind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-valgrind/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-3-valgrind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3-valgrind/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-3/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3/README.generation -------------------------------------------------------------------------------- /rhel6.devtoolset-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-3/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-3/root/.bashrc -------------------------------------------------------------------------------- /rhel6.devtoolset-4-dyninst/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-dyninst/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-4-dyninst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-dyninst/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-4-dyninst/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-dyninst/root/.bashrc -------------------------------------------------------------------------------- /rhel6.devtoolset-4-elfutils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-elfutils/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-4-elfutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-elfutils/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-4-oprofile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-oprofile/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-4-oprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-oprofile/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-4-systemtap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-systemtap/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-4-systemtap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-systemtap/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-4-toolchain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-toolchain/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-4-toolchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-toolchain/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-4-valgrind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-valgrind/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-4-valgrind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4-valgrind/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4/Dockerfile -------------------------------------------------------------------------------- /rhel6.devtoolset-4/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4/README.generation -------------------------------------------------------------------------------- /rhel6.devtoolset-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4/README.md -------------------------------------------------------------------------------- /rhel6.devtoolset-4/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel6.devtoolset-4/root/.bashrc -------------------------------------------------------------------------------- /rhel7.devtoolset-3-dyninst/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-dyninst/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-3-dyninst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-dyninst/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-3-dyninst/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-dyninst/root/.bashrc -------------------------------------------------------------------------------- /rhel7.devtoolset-3-eclipse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-eclipse/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-3-eclipse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-eclipse/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-3-eclipse/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-eclipse/root/.bashrc -------------------------------------------------------------------------------- /rhel7.devtoolset-3-elfutils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-elfutils/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-3-elfutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-elfutils/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-3-oprofile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-oprofile/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-3-oprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-oprofile/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-3-systemtap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-systemtap/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-3-systemtap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-systemtap/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-3-toolchain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-toolchain/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-3-toolchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-toolchain/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-3-valgrind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-valgrind/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-3-valgrind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3-valgrind/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-3/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3/README.generation -------------------------------------------------------------------------------- /rhel7.devtoolset-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-3/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-3/root/.bashrc -------------------------------------------------------------------------------- /rhel7.devtoolset-4-dyninst/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-dyninst/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-4-dyninst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-dyninst/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-4-dyninst/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-dyninst/root/.bashrc -------------------------------------------------------------------------------- /rhel7.devtoolset-4-elfutils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-elfutils/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-4-elfutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-elfutils/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-4-oprofile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-oprofile/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-4-oprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-oprofile/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-4-perftools/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.devtoolset-4-perftools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-perftools/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-4-perftools/contrib/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | 7 | -------------------------------------------------------------------------------- /rhel7.devtoolset-4-systemtap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-systemtap/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-4-systemtap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-systemtap/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-4-toolchain/.gitignore: -------------------------------------------------------------------------------- 1 | /enabledevtoolset-4.sh 2 | -------------------------------------------------------------------------------- /rhel7.devtoolset-4-toolchain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-toolchain/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-4-toolchain/contrib/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | 7 | -------------------------------------------------------------------------------- /rhel7.devtoolset-4-valgrind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-valgrind/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-4-valgrind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4-valgrind/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4/Dockerfile -------------------------------------------------------------------------------- /rhel7.devtoolset-4/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4/README.generation -------------------------------------------------------------------------------- /rhel7.devtoolset-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4/README.md -------------------------------------------------------------------------------- /rhel7.devtoolset-4/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.devtoolset-4/root/.bashrc -------------------------------------------------------------------------------- /rhel7.httpd24/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.httpd24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/Dockerfile -------------------------------------------------------------------------------- /rhel7.httpd24/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/README.generation -------------------------------------------------------------------------------- /rhel7.httpd24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/README.md -------------------------------------------------------------------------------- /rhel7.httpd24/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.httpd24/contrib/httpdconf.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/contrib/httpdconf.sed -------------------------------------------------------------------------------- /rhel7.httpd24/contrib/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/contrib/scl_enable -------------------------------------------------------------------------------- /rhel7.httpd24/contrib/sslconf.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/contrib/sslconf.sed -------------------------------------------------------------------------------- /rhel7.httpd24/run-httpd24.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/run-httpd24.sh -------------------------------------------------------------------------------- /rhel7.httpd24/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.httpd24/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.httpd24/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.httpd24/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/test/run -------------------------------------------------------------------------------- /rhel7.httpd24/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.httpd24/utils.sh -------------------------------------------------------------------------------- /rhel7.mariadb55/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mariadb55/.bashrc -------------------------------------------------------------------------------- /rhel7.mariadb55/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mariadb55/Dockerfile -------------------------------------------------------------------------------- /rhel7.mariadb55/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mariadb55/README.generation -------------------------------------------------------------------------------- /rhel7.mariadb55/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mariadb55/README.md -------------------------------------------------------------------------------- /rhel7.mariadb55/enablemariadb55.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mariadb55/enablemariadb55.sh -------------------------------------------------------------------------------- /rhel7.mariadb55/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mariadb55/my.cnf -------------------------------------------------------------------------------- /rhel7.mariadb55/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mariadb55/root/.bashrc -------------------------------------------------------------------------------- /rhel7.mariadb55/usr/bin/cont-mysqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mariadb55/usr/bin/cont-mysqld -------------------------------------------------------------------------------- /rhel7.mariadb55/usr/bin/container-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mariadb55/usr/bin/container-usage -------------------------------------------------------------------------------- /rhel7.mariadb55/usr/libexec/cont-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mariadb55/usr/libexec/cont-setup -------------------------------------------------------------------------------- /rhel7.mongodb24/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.mongodb24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mongodb24/Dockerfile -------------------------------------------------------------------------------- /rhel7.mongodb24/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mongodb24/README.generation -------------------------------------------------------------------------------- /rhel7.mongodb24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mongodb24/README.md -------------------------------------------------------------------------------- /rhel7.mongodb24/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /rhel7.mongodb24/root/usr/bin/run-mongod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mongodb24/root/usr/bin/run-mongod -------------------------------------------------------------------------------- /rhel7.mongodb24/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mongodb24/test/run -------------------------------------------------------------------------------- /rhel7.mysql55/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.mysql55/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mysql55/Dockerfile -------------------------------------------------------------------------------- /rhel7.mysql55/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mysql55/README.generation -------------------------------------------------------------------------------- /rhel7.mysql55/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mysql55/README.md -------------------------------------------------------------------------------- /rhel7.mysql55/root/etc/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mysql55/root/etc/my.cnf -------------------------------------------------------------------------------- /rhel7.mysql55/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /rhel7.mysql55/root/usr/bin/mysqld-master: -------------------------------------------------------------------------------- 1 | run-mysqld-master -------------------------------------------------------------------------------- /rhel7.mysql55/root/usr/bin/mysqld-slave: -------------------------------------------------------------------------------- 1 | run-mysqld-slave -------------------------------------------------------------------------------- /rhel7.mysql55/root/usr/bin/run-mysqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mysql55/root/usr/bin/run-mysqld -------------------------------------------------------------------------------- /rhel7.mysql55/root/usr/share/container-scripts/mysql/post-init.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.mysql55/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.mysql55/test/run -------------------------------------------------------------------------------- /rhel7.nginx16/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.nginx16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nginx16/Dockerfile -------------------------------------------------------------------------------- /rhel7.nginx16/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nginx16/README.generation -------------------------------------------------------------------------------- /rhel7.nginx16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nginx16/README.md -------------------------------------------------------------------------------- /rhel7.nginx16/contrib/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nginx16/contrib/scl_enable -------------------------------------------------------------------------------- /rhel7.nginx16/run-nginx16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nginx16/run-nginx16.sh -------------------------------------------------------------------------------- /rhel7.nginx16/test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nginx16/test/run.sh -------------------------------------------------------------------------------- /rhel7.nginx16/test/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nginx16/test/utils.sh -------------------------------------------------------------------------------- /rhel7.nodejs010/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.nodejs010/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nodejs010/Dockerfile -------------------------------------------------------------------------------- /rhel7.nodejs010/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nodejs010/README.generation -------------------------------------------------------------------------------- /rhel7.nodejs010/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nodejs010/README.md -------------------------------------------------------------------------------- /rhel7.nodejs010/contrib/etc/npm_global_module_list: -------------------------------------------------------------------------------- 1 | async 2 | mime 3 | mkdirp 4 | qs 5 | minimatch 6 | -------------------------------------------------------------------------------- /rhel7.nodejs010/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nodejs010/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.nodejs010/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nodejs010/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.nodejs010/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nodejs010/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.nodejs010/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nodejs010/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.nodejs010/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nodejs010/test/run -------------------------------------------------------------------------------- /rhel7.nodejs010/test/test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nodejs010/test/test-app/README.md -------------------------------------------------------------------------------- /rhel7.nodejs010/test/test-app/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.nodejs010/test/test-app/server.js -------------------------------------------------------------------------------- /rhel7.perl516/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.perl516/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.perl516/Dockerfile -------------------------------------------------------------------------------- /rhel7.perl516/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.perl516/README.generation -------------------------------------------------------------------------------- /rhel7.perl516/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.perl516/README.md -------------------------------------------------------------------------------- /rhel7.perl516/contrib/etc/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.perl516/contrib/etc/httpd.conf -------------------------------------------------------------------------------- /rhel7.perl516/contrib/etc/httpdconf.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.perl516/contrib/etc/httpdconf.sed -------------------------------------------------------------------------------- /rhel7.perl516/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.perl516/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.perl516/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.perl516/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.perl516/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.perl516/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.perl516/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.perl516/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.perl516/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.perl516/test/run -------------------------------------------------------------------------------- /rhel7.perl516/test/sample-test-app/cpanfile: -------------------------------------------------------------------------------- 1 | requires 'Math::Round', '== 0.06'; -------------------------------------------------------------------------------- /rhel7.php54/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php54/Dockerfile -------------------------------------------------------------------------------- /rhel7.php54/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php54/README.generation -------------------------------------------------------------------------------- /rhel7.php54/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php54/README.md -------------------------------------------------------------------------------- /rhel7.php54/enablephp54.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php54/enablephp54.sh -------------------------------------------------------------------------------- /rhel7.php54/etc/profile.d/cont-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php54/etc/profile.d/cont-env.sh -------------------------------------------------------------------------------- /rhel7.php54/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php54/root/.bashrc -------------------------------------------------------------------------------- /rhel7.php54/usr/bin/container-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php54/usr/bin/container-usage -------------------------------------------------------------------------------- /rhel7.php54/usr/share/cont-docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php54/usr/share/cont-docs/README -------------------------------------------------------------------------------- /rhel7.php54/usr/share/cont-layer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php54/usr/share/cont-layer/README -------------------------------------------------------------------------------- /rhel7.php55/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.php55/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/Dockerfile -------------------------------------------------------------------------------- /rhel7.php55/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/README.generation -------------------------------------------------------------------------------- /rhel7.php55/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/README.md -------------------------------------------------------------------------------- /rhel7.php55/contrib/etc/httpdconf.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/contrib/etc/httpdconf.sed -------------------------------------------------------------------------------- /rhel7.php55/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.php55/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.php55/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.php55/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.php55/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/test/run -------------------------------------------------------------------------------- /rhel7.php55/test/test-app/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/test/test-app/composer.json -------------------------------------------------------------------------------- /rhel7.php55/test/test-app/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.php55/test/test-app/index.php -------------------------------------------------------------------------------- /rhel7.postgresql92/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.postgresql92/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.postgresql92/Dockerfile -------------------------------------------------------------------------------- /rhel7.postgresql92/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.postgresql92/README.generation -------------------------------------------------------------------------------- /rhel7.postgresql92/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.postgresql92/README.md -------------------------------------------------------------------------------- /rhel7.postgresql92/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /rhel7.postgresql92/root/usr/bin/run-postgresql-master: -------------------------------------------------------------------------------- 1 | run-postgresql -------------------------------------------------------------------------------- /rhel7.postgresql92/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.postgresql92/test/run -------------------------------------------------------------------------------- /rhel7.python27/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.python27/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python27/Dockerfile -------------------------------------------------------------------------------- /rhel7.python27/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.python27/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python27/README.generation -------------------------------------------------------------------------------- /rhel7.python27/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python27/README.md -------------------------------------------------------------------------------- /rhel7.python27/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python27/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.python27/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python27/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.python27/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python27/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.python27/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python27/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.python27/test/django-test-app/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.python27/test/django-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.1 2 | -------------------------------------------------------------------------------- /rhel7.python27/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python27/test/run -------------------------------------------------------------------------------- /rhel7.python27/test/standalone-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /rhel7.python33/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.python33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python33/Dockerfile -------------------------------------------------------------------------------- /rhel7.python33/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python33/README.generation -------------------------------------------------------------------------------- /rhel7.python33/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python33/README.md -------------------------------------------------------------------------------- /rhel7.python33/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python33/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.python33/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python33/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.python33/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python33/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.python33/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python33/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.python33/test/django-test-app/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.python33/test/django-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.1 2 | -------------------------------------------------------------------------------- /rhel7.python33/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.python33/test/run -------------------------------------------------------------------------------- /rhel7.python33/test/standalone-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb100/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb100/README.generation -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb100/README.md -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/copy-from-mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb100/copy-from-mysql.sh -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/root/etc/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb100/root/etc/my.cnf -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/root/usr/bin/mysqld-master: -------------------------------------------------------------------------------- 1 | run-mysqld-master -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/root/usr/bin/mysqld-slave: -------------------------------------------------------------------------------- 1 | run-mysqld-slave -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/root/usr/share/container-scripts/mysql/my-repl-gtid.cnf.template: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | 3 | log-slave-updates = ON 4 | 5 | -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/root/usr/share/container-scripts/mysql/post-init.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-mariadb100/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb100/test/run -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb101/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb101/README.generation -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb101/README.md -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/copy-from-mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb101/copy-from-mysql.sh -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/root/etc/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb101/root/etc/my.cnf -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/root/usr/bin/mysqld-master: -------------------------------------------------------------------------------- 1 | run-mysqld-master -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/root/usr/bin/mysqld-slave: -------------------------------------------------------------------------------- 1 | run-mysqld-slave -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/root/usr/share/container-scripts/mysql/my-repl-gtid.cnf.template: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | 3 | log-slave-updates = ON 4 | 5 | -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/root/usr/share/container-scripts/mysql/post-init.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-mariadb101/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mariadb101/test/run -------------------------------------------------------------------------------- /rhel7.rh-mongodb26/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-mongodb26/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mongodb26/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-mongodb26/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-mongodb26/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mongodb26/README.generation -------------------------------------------------------------------------------- /rhel7.rh-mongodb26/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mongodb26/README.md -------------------------------------------------------------------------------- /rhel7.rh-mongodb26/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /rhel7.rh-mongodb26/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mongodb26/test/run -------------------------------------------------------------------------------- /rhel7.rh-mongodb32/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-mongodb32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mongodb32/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-mongodb32/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-mongodb32/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mongodb32/README.generation -------------------------------------------------------------------------------- /rhel7.rh-mongodb32/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /rhel7.rh-mongodb32/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mongodb32/test/run -------------------------------------------------------------------------------- /rhel7.rh-mysql56/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mysql56/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-mysql56/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-mysql56/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mysql56/README.generation -------------------------------------------------------------------------------- /rhel7.rh-mysql56/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mysql56/README.md -------------------------------------------------------------------------------- /rhel7.rh-mysql56/root/etc/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mysql56/root/etc/my.cnf -------------------------------------------------------------------------------- /rhel7.rh-mysql56/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /rhel7.rh-mysql56/root/usr/bin/mysqld-master: -------------------------------------------------------------------------------- 1 | run-mysqld-master -------------------------------------------------------------------------------- /rhel7.rh-mysql56/root/usr/bin/mysqld-slave: -------------------------------------------------------------------------------- 1 | run-mysqld-slave -------------------------------------------------------------------------------- /rhel7.rh-mysql56/root/usr/share/container-scripts/mysql/post-init.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-mysql56/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-mysql56/test/run -------------------------------------------------------------------------------- /rhel7.rh-nginx18/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-nginx18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nginx18/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-nginx18/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nginx18/README.generation -------------------------------------------------------------------------------- /rhel7.rh-nginx18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nginx18/README.md -------------------------------------------------------------------------------- /rhel7.rh-nginx18/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nginx18/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.rh-nginx18/contrib/nginxconf.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nginx18/contrib/nginxconf.sed -------------------------------------------------------------------------------- /rhel7.rh-nginx18/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nginx18/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.rh-nginx18/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nginx18/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.rh-nginx18/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nginx18/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-nginx18/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nginx18/test/run -------------------------------------------------------------------------------- /rhel7.rh-nodejs4/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-nodejs4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nodejs4/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-nodejs4/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nodejs4/README.generation -------------------------------------------------------------------------------- /rhel7.rh-nodejs4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nodejs4/README.md -------------------------------------------------------------------------------- /rhel7.rh-nodejs4/contrib/etc/npm_global_module_list: -------------------------------------------------------------------------------- 1 | async 2 | mime 3 | mkdirp 4 | qs 5 | minimatch 6 | -------------------------------------------------------------------------------- /rhel7.rh-nodejs4/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nodejs4/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.rh-nodejs4/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nodejs4/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.rh-nodejs4/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nodejs4/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.rh-nodejs4/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nodejs4/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-nodejs4/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-nodejs4/test/run -------------------------------------------------------------------------------- /rhel7.rh-passenger40/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-passenger40/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-passenger40/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-passenger40/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-passenger40/README.generation -------------------------------------------------------------------------------- /rhel7.rh-passenger40/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-passenger40/README.md -------------------------------------------------------------------------------- /rhel7.rh-passenger40/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-passenger40/contrib/.gemrc -------------------------------------------------------------------------------- /rhel7.rh-passenger40/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-passenger40/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.rh-passenger40/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-passenger40/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.rh-passenger40/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-passenger40/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-passenger40/test/puma-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /rhel7.rh-passenger40/test/puma-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /rhel7.rh-passenger40/test/rack-test-app/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'sinatra' 4 | -------------------------------------------------------------------------------- /rhel7.rh-passenger40/test/rack-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /rhel7.rh-passenger40/test/rack-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /rhel7.rh-passenger40/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-passenger40/test/run -------------------------------------------------------------------------------- /rhel7.rh-perl520/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-perl520/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-perl520/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-perl520/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-perl520/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-perl520/README.generation -------------------------------------------------------------------------------- /rhel7.rh-perl520/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-perl520/README.md -------------------------------------------------------------------------------- /rhel7.rh-perl520/contrib/etc/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-perl520/contrib/etc/httpd.conf -------------------------------------------------------------------------------- /rhel7.rh-perl520/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-perl520/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.rh-perl520/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-perl520/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.rh-perl520/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-perl520/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.rh-perl520/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-perl520/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-perl520/test/binpath/cpanfile: -------------------------------------------------------------------------------- 1 | requires 'Net::IP'; 2 | -------------------------------------------------------------------------------- /rhel7.rh-perl520/test/binpath/index.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-perl520/test/binpath/index.pl -------------------------------------------------------------------------------- /rhel7.rh-perl520/test/psgi-variables/application1.psgi: -------------------------------------------------------------------------------- 1 | die "This should not be picked up."; 2 | -------------------------------------------------------------------------------- /rhel7.rh-perl520/test/psgi-variables/cpanfile: -------------------------------------------------------------------------------- 1 | requires 'Web::Paste::Simple'; 2 | -------------------------------------------------------------------------------- /rhel7.rh-perl520/test/psgi/cpanfile: -------------------------------------------------------------------------------- 1 | requires 'Web::Paste::Simple'; 2 | -------------------------------------------------------------------------------- /rhel7.rh-perl520/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-perl520/test/run -------------------------------------------------------------------------------- /rhel7.rh-perl520/test/sample-test-app/cpanfile: -------------------------------------------------------------------------------- 1 | requires 'Math::Round', '== 0.06'; -------------------------------------------------------------------------------- /rhel7.rh-php56/.gitignore: -------------------------------------------------------------------------------- 1 | clog 2 | -------------------------------------------------------------------------------- /rhel7.rh-php56/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-php56/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-php56/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-php56/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-php56/README.generation -------------------------------------------------------------------------------- /rhel7.rh-php56/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-php56/README.md -------------------------------------------------------------------------------- /rhel7.rh-php56/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-php56/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.rh-php56/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-php56/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.rh-php56/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-php56/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.rh-php56/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-php56/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-php56/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-php56/test/run -------------------------------------------------------------------------------- /rhel7.rh-php56/test/test-app/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-php56/test/test-app/index.php -------------------------------------------------------------------------------- /rhel7.rh-postgresql94/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-postgresql94/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-postgresql94/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-postgresql94/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-postgresql94/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-postgresql94/README.generation -------------------------------------------------------------------------------- /rhel7.rh-postgresql94/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-postgresql94/README.md -------------------------------------------------------------------------------- /rhel7.rh-postgresql94/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /rhel7.rh-postgresql94/root/usr/bin/run-postgresql-master: -------------------------------------------------------------------------------- 1 | run-postgresql -------------------------------------------------------------------------------- /rhel7.rh-postgresql94/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-postgresql94/test/run -------------------------------------------------------------------------------- /rhel7.rh-postgresql95/.gitignore: -------------------------------------------------------------------------------- 1 | /run 2 | -------------------------------------------------------------------------------- /rhel7.rh-postgresql95/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-postgresql95/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-postgresql95/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-postgresql95/README.generation -------------------------------------------------------------------------------- /rhel7.rh-postgresql95/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /rhel7.rh-postgresql95/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-postgresql95/test/run -------------------------------------------------------------------------------- /rhel7.rh-python34/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-python34/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python34/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-python34/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-python34/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python34/README.generation -------------------------------------------------------------------------------- /rhel7.rh-python34/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python34/README.md -------------------------------------------------------------------------------- /rhel7.rh-python34/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python34/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.rh-python34/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python34/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.rh-python34/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python34/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-python34/test/django-test-app/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-python34/test/django-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.1 2 | -------------------------------------------------------------------------------- /rhel7.rh-python34/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python34/test/run -------------------------------------------------------------------------------- /rhel7.rh-python34/test/standalone-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /rhel7.rh-python35/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-python35/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python35/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-python35/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-python35/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python35/README.generation -------------------------------------------------------------------------------- /rhel7.rh-python35/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python35/README.md -------------------------------------------------------------------------------- /rhel7.rh-python35/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python35/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.rh-python35/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python35/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.rh-python35/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python35/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-python35/test/django-test-app/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-python35/test/django-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.1 2 | -------------------------------------------------------------------------------- /rhel7.rh-python35/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-python35/test/run -------------------------------------------------------------------------------- /rhel7.rh-python35/test/standalone-test-app/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /rhel7.rh-ror41/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-ror41/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror41/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-ror41/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-ror41/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror41/README.generation -------------------------------------------------------------------------------- /rhel7.rh-ror41/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror41/README.md -------------------------------------------------------------------------------- /rhel7.rh-ror41/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror41/contrib/.gemrc -------------------------------------------------------------------------------- /rhel7.rh-ror41/contrib/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | 7 | -------------------------------------------------------------------------------- /rhel7.rh-ror41/contrib/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror41/contrib/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-ror41/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror41/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.rh-ror41/test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror41/test/run.sh -------------------------------------------------------------------------------- /rhel7.rh-ror41/test/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror41/test/utils.sh -------------------------------------------------------------------------------- /rhel7.rh-ror42/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /rhel7.rh-ror42/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror42/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-ror42/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-ror42/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror42/README.generation -------------------------------------------------------------------------------- /rhel7.rh-ror42/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror42/README.md -------------------------------------------------------------------------------- /rhel7.rh-ror42/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror42/contrib/.gemrc -------------------------------------------------------------------------------- /rhel7.rh-ror42/contrib/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | 7 | -------------------------------------------------------------------------------- /rhel7.rh-ror42/contrib/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror42/contrib/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-ror42/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror42/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.rh-ror42/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror42/test/run -------------------------------------------------------------------------------- /rhel7.rh-ror42/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ror42/utils.sh -------------------------------------------------------------------------------- /rhel7.rh-ruby22/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-ruby22/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby22/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-ruby22/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-ruby22/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby22/README.generation -------------------------------------------------------------------------------- /rhel7.rh-ruby22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby22/README.md -------------------------------------------------------------------------------- /rhel7.rh-ruby22/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby22/contrib/.gemrc -------------------------------------------------------------------------------- /rhel7.rh-ruby22/contrib/etc/puma.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby22/contrib/etc/puma.cfg -------------------------------------------------------------------------------- /rhel7.rh-ruby22/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby22/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.rh-ruby22/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby22/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.rh-ruby22/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby22/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.rh-ruby22/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby22/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-ruby22/test/puma-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /rhel7.rh-ruby22/test/puma-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /rhel7.rh-ruby22/test/rack-test-app/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'sinatra' 4 | -------------------------------------------------------------------------------- /rhel7.rh-ruby22/test/rack-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /rhel7.rh-ruby22/test/rack-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /rhel7.rh-ruby22/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby22/test/run -------------------------------------------------------------------------------- /rhel7.rh-ruby23/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /rhel7.rh-ruby23/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby23/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-ruby23/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-ruby23/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby23/README.generation -------------------------------------------------------------------------------- /rhel7.rh-ruby23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby23/README.md -------------------------------------------------------------------------------- /rhel7.rh-ruby23/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby23/contrib/.gemrc -------------------------------------------------------------------------------- /rhel7.rh-ruby23/contrib/etc/puma.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby23/contrib/etc/puma.cfg -------------------------------------------------------------------------------- /rhel7.rh-ruby23/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby23/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.rh-ruby23/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby23/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.rh-ruby23/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby23/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.rh-ruby23/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby23/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-ruby23/test/puma-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /rhel7.rh-ruby23/test/puma-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /rhel7.rh-ruby23/test/rack-test-app/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'sinatra' 4 | -------------------------------------------------------------------------------- /rhel7.rh-ruby23/test/rack-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /rhel7.rh-ruby23/test/rack-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /rhel7.rh-ruby23/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-ruby23/test/run -------------------------------------------------------------------------------- /rhel7.rh-varnish4/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.rh-varnish4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-varnish4/Dockerfile -------------------------------------------------------------------------------- /rhel7.rh-varnish4/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-varnish4/README.generation -------------------------------------------------------------------------------- /rhel7.rh-varnish4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-varnish4/README.md -------------------------------------------------------------------------------- /rhel7.rh-varnish4/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-varnish4/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.rh-varnish4/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-varnish4/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.rh-varnish4/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-varnish4/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.rh-varnish4/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.rh-varnish4/test/run -------------------------------------------------------------------------------- /rhel7.ror40/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ror40/Dockerfile -------------------------------------------------------------------------------- /rhel7.ror40/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ror40/README.generation -------------------------------------------------------------------------------- /rhel7.ror40/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ror40/README.md -------------------------------------------------------------------------------- /rhel7.ror40/enableror40.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ror40/enableror40.sh -------------------------------------------------------------------------------- /rhel7.ror40/etc/profile.d/cont-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ror40/etc/profile.d/cont-env.sh -------------------------------------------------------------------------------- /rhel7.ror40/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ror40/root/.bashrc -------------------------------------------------------------------------------- /rhel7.ror40/usr/bin/container-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ror40/usr/bin/container-usage -------------------------------------------------------------------------------- /rhel7.ror40/usr/share/cont-docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ror40/usr/share/cont-docs/README -------------------------------------------------------------------------------- /rhel7.ror40/usr/share/cont-layer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ror40/usr/share/cont-layer/README -------------------------------------------------------------------------------- /rhel7.ruby193/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby193/Dockerfile -------------------------------------------------------------------------------- /rhel7.ruby193/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby193/README.generation -------------------------------------------------------------------------------- /rhel7.ruby193/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby193/README.md -------------------------------------------------------------------------------- /rhel7.ruby193/enableruby193.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby193/enableruby193.sh -------------------------------------------------------------------------------- /rhel7.ruby193/etc/profile.d/cont-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby193/etc/profile.d/cont-env.sh -------------------------------------------------------------------------------- /rhel7.ruby193/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby193/root/.bashrc -------------------------------------------------------------------------------- /rhel7.ruby193/usr/bin/container-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby193/usr/bin/container-usage -------------------------------------------------------------------------------- /rhel7.ruby20/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.ruby20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/Dockerfile -------------------------------------------------------------------------------- /rhel7.ruby20/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/README.generation -------------------------------------------------------------------------------- /rhel7.ruby20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/README.md -------------------------------------------------------------------------------- /rhel7.ruby20/contrib/.gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/contrib/.gemrc -------------------------------------------------------------------------------- /rhel7.ruby20/contrib/etc/puma.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/contrib/etc/puma.cfg -------------------------------------------------------------------------------- /rhel7.ruby20/contrib/etc/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/contrib/etc/scl_enable -------------------------------------------------------------------------------- /rhel7.ruby20/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/s2i/bin/assemble -------------------------------------------------------------------------------- /rhel7.ruby20/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/s2i/bin/run -------------------------------------------------------------------------------- /rhel7.ruby20/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/s2i/bin/usage -------------------------------------------------------------------------------- /rhel7.ruby20/test/puma-test-app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/test/puma-test-app/Gemfile -------------------------------------------------------------------------------- /rhel7.ruby20/test/puma-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /rhel7.ruby20/test/puma-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /rhel7.ruby20/test/rack-test-app/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'sinatra' 4 | -------------------------------------------------------------------------------- /rhel7.ruby20/test/rack-test-app/app.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | 'Hello world!' 5 | end 6 | -------------------------------------------------------------------------------- /rhel7.ruby20/test/rack-test-app/config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /rhel7.ruby20/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby20/test/run -------------------------------------------------------------------------------- /rhel7.ruby200/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby200/Dockerfile -------------------------------------------------------------------------------- /rhel7.ruby200/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby200/README.generation -------------------------------------------------------------------------------- /rhel7.ruby200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby200/README.md -------------------------------------------------------------------------------- /rhel7.ruby200/enableruby200.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby200/enableruby200.sh -------------------------------------------------------------------------------- /rhel7.ruby200/etc/profile.d/cont-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby200/etc/profile.d/cont-env.sh -------------------------------------------------------------------------------- /rhel7.ruby200/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby200/root/.bashrc -------------------------------------------------------------------------------- /rhel7.ruby200/usr/bin/container-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.ruby200/usr/bin/container-usage -------------------------------------------------------------------------------- /rhel7.s2i-base/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.s2i-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.s2i-base/Dockerfile -------------------------------------------------------------------------------- /rhel7.s2i-base/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.s2i-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.s2i-base/LICENSE -------------------------------------------------------------------------------- /rhel7.s2i-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.s2i-base/Makefile -------------------------------------------------------------------------------- /rhel7.s2i-base/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.s2i-base/README.generation -------------------------------------------------------------------------------- /rhel7.s2i-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.s2i-base/README.md -------------------------------------------------------------------------------- /rhel7.s2i-base/bin/base-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.s2i-base/bin/base-usage -------------------------------------------------------------------------------- /rhel7.s2i-base/bin/cgroup-limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.s2i-base/bin/cgroup-limits -------------------------------------------------------------------------------- /rhel7.s2i-base/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /rhel7.s2i-base/bin/fix-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.s2i-base/bin/fix-permissions -------------------------------------------------------------------------------- /rhel7.s2i-base/contrib/scl_enable: -------------------------------------------------------------------------------- 1 | # This file contains automatic SCL enablement. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | -------------------------------------------------------------------------------- /rhel7.s2i-base/hack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.s2i-base/hack/build.sh -------------------------------------------------------------------------------- /rhel7.s2i-base/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.s2i-base/test/run -------------------------------------------------------------------------------- /rhel7.sti-base/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.sti-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.sti-base/Dockerfile -------------------------------------------------------------------------------- /rhel7.sti-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.sti-base/LICENSE -------------------------------------------------------------------------------- /rhel7.sti-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.sti-base/Makefile -------------------------------------------------------------------------------- /rhel7.sti-base/README.generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.sti-base/README.generation -------------------------------------------------------------------------------- /rhel7.sti-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.sti-base/README.md -------------------------------------------------------------------------------- /rhel7.sti-base/bin/base-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.sti-base/bin/base-usage -------------------------------------------------------------------------------- /rhel7.sti-base/bin/cgroup-limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.sti-base/bin/cgroup-limits -------------------------------------------------------------------------------- /rhel7.sti-base/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /rhel7.sti-base/bin/fix-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.sti-base/bin/fix-permissions -------------------------------------------------------------------------------- /rhel7.sti-base/contrib/scl_enable: -------------------------------------------------------------------------------- 1 | # This file contains automatic SCL enablement. 2 | unset BASH_ENV PROMPT_COMMAND ENV 3 | -------------------------------------------------------------------------------- /rhel7.sti-base/hack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.sti-base/hack/build.sh -------------------------------------------------------------------------------- /rhel7.sti-base/test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.sti-base/test/run -------------------------------------------------------------------------------- /rhel7.thermostat1-agent/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.thermostat1-agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.thermostat1-agent/Dockerfile -------------------------------------------------------------------------------- /rhel7.thermostat1-agent/Dockerfile.rhel7: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /rhel7.thermostat1-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhel7.thermostat1-agent/README.md -------------------------------------------------------------------------------- /rhel7.thermostat1-agent/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -eu 4 | cmd="$1"; shift 5 | exec $cmd "$@" 6 | -------------------------------------------------------------------------------- /rhel7.thermostat1-agent/thermostat-user-home-config/data/mongodb-user-done.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhel7.thermostat1-agent/thermostat-user-home-config/data/setup-complete.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rhscl-charter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/rhscl-charter.md -------------------------------------------------------------------------------- /utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/rhscl-dockerfiles/HEAD/utils.sh --------------------------------------------------------------------------------