forked from TapTap21/docker-remote-deployment-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
41 lines (37 loc) · 1.04 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Docker-Compose Remote Deployment
author: Wernich Bekker<[email protected]>
description: A GitHub Action that supports docker-compose on remote hosts
inputs:
remote_docker_host:
description: Remote Docker host ie (user@host)
required: true
ssh_public_key:
description: Remote Docker SSH public key
required: true
ssh_private_key:
description: SSH private key used to connect to the docker host
required: true
args:
description: Deployment command args.
required: true
stack_file_name:
description: Docker stack file used. Default is docker-compose.yaml
required: false
ssh_port:
description: The ssh port of the server. Default is 22
required: false
docker_login_password:
description: The docker login password
required: false
docker_login_user:
description: The docker login user
required: false
docker_login_registry:
description: The docker login registry
required: false
runs:
using: docker
image: 'Dockerfile'
branding:
icon: send
color: green