Files
app_faturas/.drone.yml

47 lines
936 B
YAML
Raw Normal View History

---
2025-07-28 11:51:55 -03:00
kind: pipeline
type: docker
2025-07-28 12:44:40 -03:00
name: homolog
2025-07-28 11:51:55 -03:00
trigger:
branch:
- main
2025-07-28 11:51:55 -03:00
steps:
2025-07-28 12:44:40 -03:00
- name: deploy to homolog
image: appleboy/drone-scp
2025-07-28 11:51:55 -03:00
settings:
host: 216.22.5.141
username: root
2025-07-28 12:44:40 -03:00
password: F6tC5tCh29XQRpzp
port: 22
source: .
2025-07-28 11:51:55 -03:00
target: /home/app_fatura_homolog
rm: false
- name: build image
image: docker
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- cd /home/app_fatura_homolog
- docker build -t faturas_homolog .
- name: restart homolog container
image: appleboy/drone-ssh
2025-07-28 12:44:40 -03:00
settings:
host: 216.22.5.141
username: root
password: F6tC5tCh29XQRpzp
port: 22
script:
- docker rm -f FaturasHomolog || true
2025-07-28 12:44:40 -03:00
- cd /home/app_fatura_homolog
2025-07-28 19:10:39 -03:00
- docker compose -f docker-compose-homolog.yml up -d
volumes:
- name: dockersock
host:
path: /var/run/docker.sock