12345678910111213141516171819202122232425262728293031323334353637 |
- kind: pipeline
- type: docker
- name: veterans_demo
- steps:
- - name: package
- image: hello-world:latest
- volumes:
- - name: node-build
- path: /tmp
- commands:
- - mkdir -p /tmp/veterans_demo
- - cp -r images index.html js styles /tmp/veterans_demo
- - name: deploy
- image: appleboy/drone-ssh
- settings:
- host: 172.16.90.64
- username: root
- password:
- from_secret: 64_ssh_pw
- port: 22
- command_timeout: 5m
- script:
- - mv /www/wwwroot/veterentry.hw.hongweisoft.com/ /tmp/$(uuidgen)
- - mkdir -p /www/wwwroot/veterentry.hw.hongweisoft.com
- - cp -r /mydata/node/build/veterans_demo/* /www/wwwroot/veterentry.hw.hongweisoft.com
- volumes:
-
- - name: node-cache
- host:
- path: /mydata/node/cache/14/
- - name: node-build
-
- host:
- path: /mydata/node/build
|