• Stars
    star
    183
  • Rank 202,648 (Top 5 %)
  • Language
    Dockerfile
  • Created almost 6 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Rundeck Docker Zoo

Welcome to Rundeck's docker Zoo! Here we have many exhibits, both common and exotic.

These examples are great for trying out Rundeck in different setups, as well as a reference and starting place for your own deployments.

Topics

Authentication

Extending Configuration

External Database Config

Kubernetes

Plugin Bundling

Reverse Proxy

Conventions

Config via .env

Each docker-compose based exhibit has a .env.dist file that can be used to configure the example after being copied to .env . Some require it be populated and will call this out in the instructions. For all others it can be used to changed the Rundeck docker image and other various defaults.

Rundeck Enterpise (fka Pro) images

For each exhibit copy .env.dist to .env and uncomment the pro section. Provide the desired image and license file location:

RUNDECK_IMAGE=rundeckpro/enterprise:SNAPSHOT
RUNDECK_LICENSE_FILE=/path/to/rundeck-license.key

Updating/Changing Images

For docker-compose without builds:

docker-compose down
docker-compose pull

For docker-compose with builds:

docker-compose down
docker-compose pull && docker-compose build --pull
docker-compose up

Teardown

To remove the setup including data volumes:

docker-compose down --volumes