Update '.drone.yml'
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
gav
2022-05-08 02:36:30 +07:00
parent b313b15686
commit f26f7cce37

View File

@ -3,8 +3,18 @@ type: docker
name: default
steps:
- name: greeting
image: alpine
commands:
- echo hello
- echo world
- name: test_docker_exec
image: appleboy/drone-ssh
host:
from_secret: docker_host
username:
from_secret: docker_user
key:
from_secret: docker_privkey
port: 2200
script:
- echo hello world
- docker ps -a
- docker run hello-world
when:
branch: [main]