├── LICENSE ├── app ├── Dockerfile ├── README.md └── ServletApp.war ├── bluemix ├── Dockerfile ├── README.md ├── kubernetesDeploymentScript.yaml └── mongoDBSample │ ├── Copyright.txt │ ├── apps │ └── mongoDBApp.war │ ├── lafiles │ ├── LA_en │ └── LI_en │ ├── mongo-java-driver-2.11.1.jar │ ├── readme.html │ └── server.xml ├── compose ├── Dockerfile ├── README.md ├── docker-compose.yml └── mongoDBSample │ ├── Copyright.txt │ ├── apps │ └── mongoDBApp.war │ ├── lafiles │ ├── LA_en │ └── LI_en │ ├── mongo-java-driver-2.11.1.jar │ ├── readme.html │ └── server.xml ├── liberty └── README.md └── readme.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/app/README.md -------------------------------------------------------------------------------- /app/ServletApp.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/app/ServletApp.war -------------------------------------------------------------------------------- /bluemix/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/bluemix/Dockerfile -------------------------------------------------------------------------------- /bluemix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/bluemix/README.md -------------------------------------------------------------------------------- /bluemix/kubernetesDeploymentScript.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/bluemix/kubernetesDeploymentScript.yaml -------------------------------------------------------------------------------- /bluemix/mongoDBSample/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/bluemix/mongoDBSample/Copyright.txt -------------------------------------------------------------------------------- /bluemix/mongoDBSample/apps/mongoDBApp.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/bluemix/mongoDBSample/apps/mongoDBApp.war -------------------------------------------------------------------------------- /bluemix/mongoDBSample/lafiles/LA_en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/bluemix/mongoDBSample/lafiles/LA_en -------------------------------------------------------------------------------- /bluemix/mongoDBSample/lafiles/LI_en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/bluemix/mongoDBSample/lafiles/LI_en -------------------------------------------------------------------------------- /bluemix/mongoDBSample/mongo-java-driver-2.11.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/bluemix/mongoDBSample/mongo-java-driver-2.11.1.jar -------------------------------------------------------------------------------- /bluemix/mongoDBSample/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/bluemix/mongoDBSample/readme.html -------------------------------------------------------------------------------- /bluemix/mongoDBSample/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/bluemix/mongoDBSample/server.xml -------------------------------------------------------------------------------- /compose/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/compose/Dockerfile -------------------------------------------------------------------------------- /compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/compose/README.md -------------------------------------------------------------------------------- /compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/compose/docker-compose.yml -------------------------------------------------------------------------------- /compose/mongoDBSample/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/compose/mongoDBSample/Copyright.txt -------------------------------------------------------------------------------- /compose/mongoDBSample/apps/mongoDBApp.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/compose/mongoDBSample/apps/mongoDBApp.war -------------------------------------------------------------------------------- /compose/mongoDBSample/lafiles/LA_en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/compose/mongoDBSample/lafiles/LA_en -------------------------------------------------------------------------------- /compose/mongoDBSample/lafiles/LI_en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/compose/mongoDBSample/lafiles/LI_en -------------------------------------------------------------------------------- /compose/mongoDBSample/mongo-java-driver-2.11.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/compose/mongoDBSample/mongo-java-driver-2.11.1.jar -------------------------------------------------------------------------------- /compose/mongoDBSample/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/compose/mongoDBSample/readme.html -------------------------------------------------------------------------------- /compose/mongoDBSample/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/compose/mongoDBSample/server.xml -------------------------------------------------------------------------------- /liberty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/liberty/README.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WASdev/ci.docker.tutorials/HEAD/readme.md --------------------------------------------------------------------------------