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
External Database Config
Kubernetes
Pro
kubernetes
Plugin Bundling
Reverse Proxy
Conventions
.env
Config via 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 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/team:SNAPSHOT
RUNDECK_LICENSE_FILE=/home/protip/rundeck-licesnse.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