maxiller / docker-compose-remote-action

Github action to run docker compose on a remote host.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker Compose Remote Action

This actions deploys your docker-compose stack file to remote host where docker-compose does not even have to be installed.

Inputs

ssh_host

Remote host where docker is running

ssh_user

SSH user on remote host

ssh_key

SSH private key used to access to remote server. Better save it into repository secrets.

compose_files

Optional. Docker compose filenames. Mupliple files separated by space are allowed. See Using multiple compose files for explanation. Default: docker-compose.yml

service

Optional. Name of service to be deployed. By default all services are deployed.

force_recreate

Optional. Recreate containers even if compose file did not change. Default: false

pull

Optional. Pull docker images before deploying. Default: false

build

Optional. Build docker images before deploying. Default: false

options

Optional. Pass additional options to docker-compose. For example: --no-deps

Example usage

steps:
  # need checkout before using docker-compose-remote-action
  - uses: actions/checkout@v2
  - uses: chaplyk/docker-compose-remote-action@v1.1
    with:
      ssh_host: 127.0.0.1
      ssh_user: username
      ssh_key: ${{ secrets.SSH_KEY }}
      compose_file: docker-compose.yml
      pull: true
      build: true

About

Github action to run docker compose on a remote host.


Languages

Language:Shell 91.4%Language:Dockerfile 8.6%