diff --git a/Jenkinsfile b/Jenkinsfile index 51bf0fd..972cd2a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,7 +12,7 @@ pipeline { sh 'docker container stop workout || true' sh 'docker network create test_workout || true' 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 -e SECRET_KEY=secret -d workout:jenkins /bin/bash' + sh 'docker container run --rm --name workout --network test_workout -p 8000:8000 -e DATABASE_URL=postgres://postgres:postgres@pg:5432/postgres -e SECRET_KEY=secret -d workout:jenkins' sh 'curl http://localhost:8000' } }