-
Notifications
You must be signed in to change notification settings - Fork 22
/
action.yml
40 lines (40 loc) · 1.06 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 Deploy
author: Bohdan Chaplyk <bogdan.chaplyk@gmail.com>
description: 'Deploy docker-compose with remote docker context'
inputs:
ssh_key:
description: SSH private key used to connect to the docker host
required: true
ssh_user:
description: SSH user
required: true
ssh_host:
description: Remote host where docker is running
required: true
ssh_port:
description: Remote port to use, defaults at 22
required: false
compose_file:
description: Docker compose filename.
required: false
force_recreate:
description: Recreate containers even if compose file did not change
required: false
pull:
description: Pull docker images before deploying
required: false
build:
description: Build docker images before deploying
required: false
options:
description: Pass additional options to docker-compose
required: false
service:
description: Name of service to be deployed
required: false
runs:
using: docker
image: Dockerfile
branding:
icon: anchor
color: blue