├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bootstrap.sh ├── commands.list ├── commands2.list ├── configArt ├── apache-archive.json ├── configArt.sh ├── docker-dev.json ├── docker-prod.json ├── docker-remote.json ├── jcenter.json ├── libs-dev-local.json ├── libs-dev.json ├── swampup.json ├── tomcat-local.json └── warmup.sh ├── docker-app ├── Dockerfile ├── Jenkinsfile ├── app-test │ ├── distributeDocker.json │ ├── distributeWar.json │ ├── dpromote.json │ ├── promote-docker.json │ ├── promote-war.json │ ├── promote2.json │ ├── promoteStatus.aql │ ├── retag-gcartifactory.json │ └── retag.json ├── retag-gcartifactory.json ├── retag.json └── war │ └── .gitkeep ├── docker-framework ├── Dockerfile ├── Jenkinsfile ├── framework-test │ ├── Dockerfile │ ├── dpromote.json │ ├── promote.json │ ├── retag.json │ └── war │ │ └── .gitkeep ├── jdk │ └── .gitkeep ├── promote.json ├── retag-gcartifactory.json ├── retag.json ├── retag1.json └── tomcat │ └── server.xml ├── docker-hello ├── Dockerfile └── dockerdemo.sh └── docker-mvn-app ├── Dockerfile └── retag-gcartifactory.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # docker-lifecycle-scripts -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /commands.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/commands.list -------------------------------------------------------------------------------- /commands2.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/commands2.list -------------------------------------------------------------------------------- /configArt/apache-archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/apache-archive.json -------------------------------------------------------------------------------- /configArt/configArt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/configArt.sh -------------------------------------------------------------------------------- /configArt/docker-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/docker-dev.json -------------------------------------------------------------------------------- /configArt/docker-prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/docker-prod.json -------------------------------------------------------------------------------- /configArt/docker-remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/docker-remote.json -------------------------------------------------------------------------------- /configArt/jcenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/jcenter.json -------------------------------------------------------------------------------- /configArt/libs-dev-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/libs-dev-local.json -------------------------------------------------------------------------------- /configArt/libs-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/libs-dev.json -------------------------------------------------------------------------------- /configArt/swampup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/swampup.json -------------------------------------------------------------------------------- /configArt/tomcat-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/tomcat-local.json -------------------------------------------------------------------------------- /configArt/warmup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/configArt/warmup.sh -------------------------------------------------------------------------------- /docker-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/Dockerfile -------------------------------------------------------------------------------- /docker-app/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/Jenkinsfile -------------------------------------------------------------------------------- /docker-app/app-test/distributeDocker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/app-test/distributeDocker.json -------------------------------------------------------------------------------- /docker-app/app-test/distributeWar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/app-test/distributeWar.json -------------------------------------------------------------------------------- /docker-app/app-test/dpromote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/app-test/dpromote.json -------------------------------------------------------------------------------- /docker-app/app-test/promote-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/app-test/promote-docker.json -------------------------------------------------------------------------------- /docker-app/app-test/promote-war.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/app-test/promote-war.json -------------------------------------------------------------------------------- /docker-app/app-test/promote2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/app-test/promote2.json -------------------------------------------------------------------------------- /docker-app/app-test/promoteStatus.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/app-test/promoteStatus.aql -------------------------------------------------------------------------------- /docker-app/app-test/retag-gcartifactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/app-test/retag-gcartifactory.json -------------------------------------------------------------------------------- /docker-app/app-test/retag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/app-test/retag.json -------------------------------------------------------------------------------- /docker-app/retag-gcartifactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/retag-gcartifactory.json -------------------------------------------------------------------------------- /docker-app/retag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-app/retag.json -------------------------------------------------------------------------------- /docker-app/war/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-framework/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/Dockerfile -------------------------------------------------------------------------------- /docker-framework/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/Jenkinsfile -------------------------------------------------------------------------------- /docker-framework/framework-test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/framework-test/Dockerfile -------------------------------------------------------------------------------- /docker-framework/framework-test/dpromote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/framework-test/dpromote.json -------------------------------------------------------------------------------- /docker-framework/framework-test/promote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/framework-test/promote.json -------------------------------------------------------------------------------- /docker-framework/framework-test/retag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/framework-test/retag.json -------------------------------------------------------------------------------- /docker-framework/framework-test/war/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-framework/jdk/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-framework/promote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/promote.json -------------------------------------------------------------------------------- /docker-framework/retag-gcartifactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/retag-gcartifactory.json -------------------------------------------------------------------------------- /docker-framework/retag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/retag.json -------------------------------------------------------------------------------- /docker-framework/retag1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/retag1.json -------------------------------------------------------------------------------- /docker-framework/tomcat/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-framework/tomcat/server.xml -------------------------------------------------------------------------------- /docker-hello/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-hello/Dockerfile -------------------------------------------------------------------------------- /docker-hello/dockerdemo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-hello/dockerdemo.sh -------------------------------------------------------------------------------- /docker-mvn-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-mvn-app/Dockerfile -------------------------------------------------------------------------------- /docker-mvn-app/retag-gcartifactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrogtraining/docker-lifecycle-scripts/HEAD/docker-mvn-app/retag-gcartifactory.json --------------------------------------------------------------------------------