feat: docker pull back image #740

Closed
alexm wants to merge 48 commits from 6695-docker_push into dev
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 422d3428c5 - Show all commits

6
Jenkinsfile vendored
View File

@ -108,10 +108,10 @@ pipeline {
// sh 'cd front' // sh 'cd front'
// sh '# export VERSION=e2e-try' // sh '# export VERSION=e2e-try'
sh 'docker build -f salix/back/Dockerfile -t back ./salix' sh 'docker build -f salix/back/Dockerfile -t back ./salix'
sh 'docker-compose -f docker-compose.e2e.yml up db' sh 'docker-compose -f docker-compose.e2e.yml up db --build'
sh 'docker run --net=host -v ./test/cypress/storage:/salix/storage -d back' sh 'docker run --net=host -v ./test/cypress/storage:/salix/storage -d back'
sh 'docker-compose -f docker-compose.e2e.yml up -d front' sh 'docker-compose -f docker-compose.e2e.yml up -d front --build'
sh 'docker-compose -f docker-compose.e2e.yml up e2e --build' sh 'docker-compose -f docker-compose.e2e.yml up e2e'
} }
post { post {