├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── archive ├── Dockerfile ├── README.md ├── get-liberty-plugin-config.sh ├── httpd-foreground ├── httpd.conf └── update-conf.sh ├── ilan ├── Dockerfile ├── README.md ├── build ├── build_all ├── ihsstart.sh ├── im │ └── Dockerfile ├── install_ihs ├── push_all └── versions.csv ├── production ├── Dockerfile.install ├── Dockerfile.prereq ├── Dockerfile.v9.prereq ├── README.md └── ihsstart.sh ├── static-topology ├── README.md ├── gen-plugin-cfg │ ├── Dockerfile │ ├── GenPluginCfg.sh │ ├── README.md │ └── com.ibm.ws.docker.jar ├── get-plugin-cfg │ ├── GetPluginCfg.sh │ └── README.md ├── merge-plugin-cfg │ ├── Dockerfile │ ├── README.md │ └── pluginCfgMerge.sh └── test │ ├── Dockerfile │ └── testMerge.sh └── test ├── README.md └── buildAndVerify.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/README.md -------------------------------------------------------------------------------- /archive/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/archive/Dockerfile -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/archive/README.md -------------------------------------------------------------------------------- /archive/get-liberty-plugin-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/archive/get-liberty-plugin-config.sh -------------------------------------------------------------------------------- /archive/httpd-foreground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/archive/httpd-foreground -------------------------------------------------------------------------------- /archive/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/archive/httpd.conf -------------------------------------------------------------------------------- /archive/update-conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/archive/update-conf.sh -------------------------------------------------------------------------------- /ilan/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/ilan/Dockerfile -------------------------------------------------------------------------------- /ilan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/ilan/README.md -------------------------------------------------------------------------------- /ilan/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/ilan/build -------------------------------------------------------------------------------- /ilan/build_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/ilan/build_all -------------------------------------------------------------------------------- /ilan/ihsstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/ilan/ihsstart.sh -------------------------------------------------------------------------------- /ilan/im/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/ilan/im/Dockerfile -------------------------------------------------------------------------------- /ilan/install_ihs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/ilan/install_ihs -------------------------------------------------------------------------------- /ilan/push_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/ilan/push_all -------------------------------------------------------------------------------- /ilan/versions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/ilan/versions.csv -------------------------------------------------------------------------------- /production/Dockerfile.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/production/Dockerfile.install -------------------------------------------------------------------------------- /production/Dockerfile.prereq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/production/Dockerfile.prereq -------------------------------------------------------------------------------- /production/Dockerfile.v9.prereq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/production/Dockerfile.v9.prereq -------------------------------------------------------------------------------- /production/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/production/README.md -------------------------------------------------------------------------------- /production/ihsstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/production/ihsstart.sh -------------------------------------------------------------------------------- /static-topology/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/README.md -------------------------------------------------------------------------------- /static-topology/gen-plugin-cfg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/gen-plugin-cfg/Dockerfile -------------------------------------------------------------------------------- /static-topology/gen-plugin-cfg/GenPluginCfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/gen-plugin-cfg/GenPluginCfg.sh -------------------------------------------------------------------------------- /static-topology/gen-plugin-cfg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/gen-plugin-cfg/README.md -------------------------------------------------------------------------------- /static-topology/gen-plugin-cfg/com.ibm.ws.docker.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/gen-plugin-cfg/com.ibm.ws.docker.jar -------------------------------------------------------------------------------- /static-topology/get-plugin-cfg/GetPluginCfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/get-plugin-cfg/GetPluginCfg.sh -------------------------------------------------------------------------------- /static-topology/get-plugin-cfg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/get-plugin-cfg/README.md -------------------------------------------------------------------------------- /static-topology/merge-plugin-cfg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/merge-plugin-cfg/Dockerfile -------------------------------------------------------------------------------- /static-topology/merge-plugin-cfg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/merge-plugin-cfg/README.md -------------------------------------------------------------------------------- /static-topology/merge-plugin-cfg/pluginCfgMerge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/merge-plugin-cfg/pluginCfgMerge.sh -------------------------------------------------------------------------------- /static-topology/test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/test/Dockerfile -------------------------------------------------------------------------------- /static-topology/test/testMerge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/static-topology/test/testMerge.sh -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/test/README.md -------------------------------------------------------------------------------- /test/buildAndVerify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.ibm-http-server/HEAD/test/buildAndVerify.sh --------------------------------------------------------------------------------