Skip to content

πŸ‹ A simple CLI tool for deploying Docker containers to remote hosts via SSH without the need of a registry.

License

Notifications You must be signed in to change notification settings

bjarneo/copepod

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

33 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Copepod: Docker Deployment Tool

⚠️ EXPERIMENTAL PROTOTYPE - This tool is currently in experimental stage and should be used with caution in production environments.

A simple yet powerful Go-based CLI tool for automating Docker container deployments to remote servers without the use of a registry. This tool handles the entire deployment process including building Docker images, transferring them to remote hosts, and managing container lifecycle.

demo.mp4

Prerequisites

  • Docker installed locally and on the remote host
  • SSH access to the remote host
  • SSH key-based authentication

Installation

Pre-built Binaries

Download the latest pre-built binary from the releases page.

Available binaries:

  • Linux (AMD64): copepod-linux-amd64
  • Linux (ARM64): copepod-linux-arm64
  • macOS (Intel): copepod-darwin-amd64
  • macOS (Apple Silicon): copepod-darwin-arm64

After downloading:

  1. Verify the checksum (SHA-256):
sha256sum -c copepod-<os>-<arch>.sha256
  1. Make the binary executable:
chmod +x copepod-<os>-<arch>
  1. Optionally, move to your PATH:
# Example for Linux/macOS
sudo mv copepod-<os>-<arch> /usr/local/bin/copepod

Building from Source

Alternatively, you can build from source:

Requirements:

  • Go 1.x or higher
git clone <repository-url>
cd copepod
go build -o copepod

Usage

./copepod [options]

Command Line Options

Option Environment Variable Default Description
--host HOST Remote host to deploy to
--user HOST_USER SSH user for remote host
--image DOCKER_IMAGE_NAME copepod_app Docker image name
--tag DOCKER_IMAGE_TAG latest Docker image tag
--platform HOST_PLATFORM linux/amd64 Docker platform
--ssh-key SSH_KEY_PATH Path to SSH key
--container-name DOCKER_CONTAINER_NAME copepod_app Name for the container
--container-port DOCKER_CONTAINER_PORT 3000 Container port
--host-port HOST_PORT 3000 Host port
--env-file DOCKER_CONTAINER_ENV_FILE Environment file
--dockerfile Dockerfile Dockerfile path
--build-arg BUILD_ARGS Build arguments (KEY=VALUE)
--rollback Rollback to the previous instance
--network DOCKER_NETWORK Docker network to connect to
--volume Volume mount (host:container)
--cpus DOCKER_CPUS Number of CPUs
--memory DOCKER_MEMORY Memory limit

Example Commands

Basic deployment:

./copepod --host example.com --user deploy

Deployment with custom ports:

./copepod --host example.com --user deploy --container-name myapp --container-port 8080 --host-port 80

Using environment file:

./copepod --env-file .env.production

Rollback:

# For rollback to work you need to deploy using different tags, and not override the same tag each deploy
./codepod --host example.com --user deploy --container-name myapp --container-port 8080 --host-port 80 --rollback

Using build arguments:

# Single build argument
./copepod --host example.com --user deploy --build-arg VERSION=1.0.0

# Multiple build arguments
./copepod --host example.com --user deploy --build-arg VERSION=1.0.0 --build-arg ENV=prod

# Using environment variable
# Using git commit hash
./copepod --host example.com --user deploy --build-arg GIT_HASH=$(git rev-parse HEAD)

Advanced deployment with resource limits and volumes:

./copepod --host example.com --user deploy \
  --network my-network \
  --volume /host/data:/container/data \
  --volume /host/config:/container/config \
  --cpus 2 \
  --memory 1g

Directory Structure

Your project directory should look like this:

.
β”œβ”€β”€ Dockerfile            # Required: Docker build instructions
β”œβ”€β”€ your_code            # Your code
└── .env.production      # Optional: Environment variables

Example Github workflow

Deployment workflow:

name: Deploy Application

on:
  push:
    tags:
      - 'v*'

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Get version from tag
        id: get_version
        run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT

      - name: Deploy to production
        uses: bjarneo/copepod@main
        with:
          host: remote_host.com
          user: deploy_user
          ssh_key: ${{ secrets.PRIVATE_SSH_KEY }}
          image: myapp
          tag: ${{ steps.get_version.outputs.VERSION }}
          container_name: myapp_prod
          container_port: 3000
          host_port: 80
          env_file: .env.production
          build_args: |
            VERSION=${{ steps.get_version.outputs.VERSION }},
            NODE_ENV=production,
            BUILD_TIME=${{ github.event.repository.updated_at }}

Rollback workflow:

name: Deploy Application

on:
  workflow_dispatch:
    inputs:
      environment:
        description: 'Environment to rollback'
        required: true
        type: choice
        options:
          - production
          - staging
      reason:
        description: 'Reason for rollback'
        required: true
        type: string
  
jobs:
  rollback:
    runs-on: ubuntu-latest
    environment: ${{ github.event.inputs.environment }}
    steps:
      # Example of rolling back if needed
      # NOTE: You want to have a manual approval step in between to ensure you want to rollback
      - name: Rollback production
        uses: bjarneo/copepod@main
        with:
          host: remote_host.com
          user: deploy_user
          ssh_key: ${{ secrets.PRIVATE_SSH_KEY }}
          image: myapp
          container_name: myapp_prod
          container_port: 3000
          host_port: 80

          # This has to be set to true for rollback to work
          rollback: true

GitHub Action Inputs

When using Copepod as a GitHub Action, the following inputs are available:

Input Required Default Description
host Yes Remote host to deploy to
user Yes SSH user for remote host
ssh_key Yes SSH private key for authentication
image No copepod_app Docker image name
tag No latest Docker image tag
platform No linux/amd64 Docker platform
container_name No copepod_app Name for the container
container_port No 3000 Container port
host_port No 3000 Host port
env_file No Path to environment file
dockerfile No Dockerfile Path to Dockerfile
build_args No Build arguments (comma-separated KEY=VALUE pairs)
rollback No false Whether to perform a rollback
network No Docker network to connect to
volume No Volume mount (host:container)
cpus No Number of CPUs
memory No Memory limit

Deployment Process

  1. Validates configuration and checks prerequisites
  2. Verifies Docker installation and SSH connectivity
  3. Builds Docker image locally with any provided build arguments
  4. Transfers image to remote host
  5. Copies environment file (if specified)
  6. Stops and removes existing container
  7. Starts new container with specified configuration
  8. Verifies container is running properly

Flow chart: FLOW.md

Logging

The tool maintains detailed logs in deploy.log, including:

  • Timestamp for each operation
  • Command execution details
  • Success/failure status
  • Error messages and stack traces

Error Handling

The tool includes error handling for common scenarios:

  • Missing Dockerfile
  • SSH connection failures
  • Docker build/deployment errors
  • Container startup issues

Security Considerations

  • Uses SSH key-based authentication
  • Supports custom SSH key paths
  • Environment variables can be passed securely via env file
  • Build arguments can be used for sensitive build-time variables
  • No sensitive information is logged

Known Limitations

  1. Limited error recovery mechanisms
  2. Basic container health checking
  3. No support for complex Docker network configurations
  4. No Docker Compose support

Contributing

  1. Fork the repository
  2. Create your feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a new Pull Request

Release Process

New versions are automatically built and released when a new tag is pushed:

git tag v1.0.0
git push origin v1.0.0

This will trigger the GitHub Action workflow to:

  1. Build binaries for multiple platforms
  2. Generate checksums
  3. Create a new release with the binaries

TODO

  • Improve error handling
  • Add support for Docker Compose
  • Implement proper container health checks
  • Add shell completion support

License

This project is licensed under the MIT License - see the LICENSE file for details.

Disclaimer

This is an experimental prototype. Use at your own risk. The authors assume no liability for the use of this tool. Always review the code and test in a safe environment before using in any critical systems.

About

πŸ‹ A simple CLI tool for deploying Docker containers to remote hosts via SSH without the need of a registry.

Topics

Resources

License

Stars

Watchers

Forks