Created
June 8, 2019 19:07
-
-
Save matthewoestreich/3a61b71dbc90866e2588e35a555b70a9 to your computer and use it in GitHub Desktop.
Sample Jenkinsfile that passes env variables into Jenkins so Mocha can run tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node { | |
def app | |
def dockerhub_container = "oze4/node-api" | |
def local_container_name = "node-api" | |
def docker_compose_path = "/srv/traefik/docker-compose/" | |
stage('Clone Repository') { | |
deleteDir() | |
checkout scm | |
} | |
stage('Build Image') { | |
app = docker.build("${dockerhub_container}") | |
} | |
stage('Mocha Test Image') { | |
docker.image("${dockerhub_container}").inside { | |
withEnv([ | |
"MONGO_STRING=${MONGO_STRING}", | |
"MONGO_AUTH_DB=${MONGO_AUTH_DB}", | |
"JWT_SIGNATURE=${JWT_SIGNATURE}", | |
"JWT_ENCRYPTION_KEY=${JWT_ENCRYPTION_KEY}", | |
"PORT=${PORT}", | |
]) { | |
sh ''' | |
yarn install | |
yarn test | |
rm -R node_modules | |
ls -a | |
''' | |
} | |
} | |
} | |
stage('Push Image To Docker Hub') { | |
docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials') { | |
app.push("${env.BUILD_NUMBER}") | |
app.push("latest") | |
} | |
} | |
stage ('SSH To Docker Host and Deploy') { | |
sshagent(credentials : ['ost-sf-dckr-00']) { | |
sh ''' | |
ssh -v root@ost-sf-dckr-00 <<EOF | |
echo "--------------------------------" | |
echo "---- pulling latest image ------" | |
echo "--------------------------------" | |
docker pull '''+dockerhub_container+''':latest | |
echo "--------------------------------" | |
echo "--------------------------------" | |
echo "--- stopping existing image ----" | |
echo "--------------------------------" | |
docker stop '''+local_container_name+''' | |
echo "--------------------------------" | |
echo "--------------------------------" | |
echo "--- removing existing image ----" | |
echo "--------------------------------" | |
docker rm '''+local_container_name+''' | |
echo "--------------------------------" | |
echo "--------------------------------" | |
echo "------ starting new image ------" | |
echo "--------------------------------" | |
cd "'''+docker_compose_path+'''" | |
docker-compose up -d '''+local_container_name+''' | |
echo "--------------------------------" | |
echo "--------------------------------" | |
echo "----------- DONE ---------------" | |
echo "--------------------------------" | |
echo "--------------------------------" | |
EOF | |
''' | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment