grafana -> notification-provider -> mattermost | see https://gitlab.fedy95.com/dev/notification-provider
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
392 B

---
deploy:
stage: deploy
only:
- tags
tags:
- ssh-1.160
variables:
GIT_STRATEGY: none
script:
- echo "$DOCKER_PASS" | docker login -u "$DOCKER_USER" --password-stdin "$DOCKER_URL"
- cd /home/fedy95/gitlab/${CI_PROJECT_PATH}
- git pull
- make restart
- make cleanup
- docker logout "$DOCKER_URL"
...