Skip to content

A simple service to continuously deploy docker containers in a docker compose stack. The tool is especially useful in a GitHub Actions workflow.

License

Notifications You must be signed in to change notification settings

stonith404/cd-dc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CD-DC

CD-DC (Continuous Deployment Docker Compose) is a simple service to continuously deploy docker containers in a docker compose stack. The tool is especially useful in a GitHub Actions workflow.

Usage

Send a post request to the /upgrade/<service> endpoint:

curl <cd-dc-host>/upgrade/<service> -X POST -H <api-key> --fail-with-body

Production Installation

Install as Systemd service

  1. Build the binary

    go build -o build/cd-dc ./cmd
    
  2. Copy the binary to /opt/cd-dc

  3. Copy the config.yml to /opt/cd-dc and modify it accordingly

  4. Create a systemd service file in /etc/systemd/system/cd-dc.service

    [Unit]
    Description=CD-DC
    After=network.target
    
    [Service]
    ExecStart=/opt/cd-dc/cd-dc
    WorkingDirectory=/opt/cd-dc
    
    [Install]
    WantedBy=default.target
    
  5. Enable the service

    sudo systemctl enable cd-dc
    
  6. Start the service

    sudo systemctl start cd-dc
    
  7. Check the status

    sudo systemctl status cd-dc
    
  8. Check the logs

    sudo journalctl -u cd-dc
    

Update

  1. Copy the new binary to /opt/cd-dc
  2. Reload the systemd daemon
    sudo systemctl daemon-reload
    
  3. Restart the service
    sudo systemctl restart cd-dc
    

Development

Run

go run ./cmd

Build for specific OS and architecture

env GOOS=linux GOARCH=arm64 go build -ldflags "-w" -o build/cd-dc ./cmd

About

A simple service to continuously deploy docker containers in a docker compose stack. The tool is especially useful in a GitHub Actions workflow.

Topics

Resources

License

Stars

Watchers

Forks

Languages