Update Jenkinsfile

This commit is contained in:
Gabriel Augendre 2018-05-03 11:40:33 +02:00 committed by GitHub
parent 986999ee8a
commit df63a4ce89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored
View file

@ -8,15 +8,19 @@ pipeline {
}
stage('test') {
steps {
sh 'docker stop pg'
sh 'docker run --rm --name pg -d postgres'
sh 'docker image ls'
sh 'docker container stop pg || true'
sh 'docker container stop workout || true'
sh 'docker network create test_workout'
sh 'docker container run --rm --name pg --network test_workout -d postgres'
sh 'docker container run --rm --name workout --network test_workout -p 8000:8000 -e DATABASE_URL=postgres://postgres:postgres@pg:5432/postgres -d workout:jenkins'
sh 'curl http://localhost:8000'
}
}
}
post {
always {
sh 'docker stop pg'
sh 'docker stop workout'
}
}
}