Skip to content

A GitHub Action that supports docker-compose and Docker Swarm deployments

License

Notifications You must be signed in to change notification settings

laktosterror/docker-deployment-action

 
 

Repository files navigation

Docker Deployment Action

A GitHub Action that supports docker-compose and Docker Swarm deployments. Documentaion Page.

Example

Below is a brief example on how the action can be used:

- name: Deploy to Docker compose
  uses: fabiel-leon/docker-deployment-action@master
  env:
    PORT: ${{ secrets.PORT }}
    DB_NAME: ${{ secrets.DB_NAME }}
  with:
    remote_docker_host: user@myswarm.com
    remote_docker_port: "12222"
    ssh_private_key: ${{ secrets.DOCKER_SSH_PRIVATE_KEY }}
    ssh_public_key: ${{ secrets.DOCKER_SSH_PUBLIC_KEY }}
    deployment_mode: docker-compose
    copy_stack_file: true
    deploy_path: /root/my-deployment
    stack_file_name: docker-compose.yaml
    keep_files: 5
    args: my_applicaion
    sub_folder_name: logs

Input Configurations

Below are all of the supported inputs. Some inputs are considered sensitive information and it should be stored as secrets.

args

Arguments to pass to the deployment command either docker or docker-compose. The actions will automatically generate the following commands for each of the cases.

  • docker stack deploy --compose-file $FILE --log-level debug --host $HOST
  • docker-compose -f $INPUT_STACK_FILE_NAME

remote_docker_host

Specify Remote Docker host. The input value must be in the follwing format (user@host)

remote_docker_port

Specify Remote Docker ssh port if its not 22 default ie (2222)

ssh_public_key

Remote Docker SSH public key.

ssh_private_key

SSH private key used to connect to the docker host

SSH key must be in PEM format (begins with -----BEGIN RSA PRIVATE KEY-----), or you can randomly get Load key "/HOME/.ssh/id_rsa": invalid format error.

Convert it from OPENSSH (key begins with -----BEGIN OPENSSH PRIVATE KEY-----) format using ssh-keygen -p -m PEM -f ~/.ssh/id_rsa

deployment_mode

Deployment mode either docker-swarm or docker-compose. Default is docker-compose.

copy_stack_file

Copy stack file to remote server and deploy from the server. Default is false.

sub_folder_name

Create a folder with write permissions (example: for logs, data, etc).

deploy_path

The path where the stack files will be copied to. Default ~/docker-deployment.

stack_file_name

Docker stack file used. Default is docker-compose.yaml

keep_files

Number of the files to be kept on the server. Default is 3.

docker_prune

A boolean input to trigger docker prune command.

pre_deployment_command_args

The args for the pre deploument command. Applicable only for docker-compose.

pull_images_first

Pull docker images before deploying. Applicable only for docker-compose.

License

This project is licensed under the MIT license. See the LICENSE file for details.

About

A GitHub Action that supports docker-compose and Docker Swarm deployments

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 88.7%
  • Dockerfile 11.3%