Skip to content

Commit

Permalink
Merge branch 'dev' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
nkthien committed Apr 5, 2023
2 parents 9329440 + f18ef17 commit 42623c5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ pipeline {

stage('deploy') {
when {
expression { BRANCH_NAME ==~ /(main|dev)/ }
anyOf {
expression { BRANCH_NAME ==~ /(main|dev)/ }
buildingTag()
}
}

steps {
Expand Down
9 changes: 6 additions & 3 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ services:
HTTP_PORT: 8080
volumes:
- ./bi-service/logs:/app/logs
- bi-service-data:/tmp/csv
- biservice-csvdata:/tmp/csv
- biservice-mapdata:/app/mapdata
depends_on:
- mysql
- ssdb
Expand Down Expand Up @@ -104,13 +105,15 @@ services:
- 5050:80
volumes:
- ./nginx/log/:/var/log/nginx/
- bi-service-data:/var/www/html/public/static/tmp/csv
- biservice-csvdata:/var/www/html/public/static/tmp/csv
- biservice-mapdata:/var/www/html/public/static/mapdata
depends_on:
- bi_service
- web

volumes:
bi-service-data:
biservice-csvdata:
biservice-mapdata:

networks:
rocket_network:

0 comments on commit 42623c5

Please sign in to comment.