-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
27 lines (26 loc) · 916 Bytes
/
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
name: Remote Docker Pull
author: Tim Rowe <[email protected]>
description: Pull a docker image to a remote docker daemon connected via SSH
inputs:
remote_docker_host:
description: The hostname or IP address of the remote docker host
required: true
ssh_private_key:
description: The private key configured on the remote host to allow SSH access
required: true
remote_docker_user:
description: The username to use when connecting to the remote host
required: true
ssh_port:
description: The port to use when connecting to the remote host
required: false
default: 22
docker_image:
description: The docker image to pull to the remote daemon
required: true
local_tag:
description: The tag to apply to the image on the remote daemon after pulling from the registry
required: false
runs:
using: docker
image: docker://ghcr.io/tjsr/remote_docker_pull:latest