feat: docker pull back image #740

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

4
Jenkinsfile vendored
View File

@ -108,9 +108,9 @@ 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 -d' sh 'docker-compose -f docker-compose.e2e.yml up db'
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 -d up front -d' sh 'docker-compose -f docker-compose.e2e.yml up front -d'
sh 'docker-compose -f docker-compose.e2e.yml up e2e --build' sh 'docker-compose -f docker-compose.e2e.yml up e2e --build'
} }