Docker image for Rundeck CLI.
Image tag will always be the same as upstream release version release tag. For example, v2.0.6
can be pulled as vividvilla/rundeck-cli:v2.0.6
or ghcr.io/vividvilla/rundeck-cli-docker:v2.0.6
.
- Use
vividvilla/rundeck-cli:latest
to pull from Dockerhub. - Use
ghcr.io/vividvilla/rundeck-cli-docker:latest
to pull from Github container registry.
docker run --rm -e RD_URL="http://rundeck:4440" -e RD_TOKEN="your_token_here" vividvilla/rundeck-cli:latest --help
# Run a particular version.
docker run --rm -e RD_URL="http://rundeck:4440" -e RD_TOKEN="your_token_here" vividvilla/rundeck-cli:v2.0.6 --help
# Connect to Rundeck accessible from local network.
docker run --rm --network host -e RD_URL="http://rundeck:4440" -e RD_TOKEN="your_token_here" vividvilla/rundeck-cli:latest --help
# User ENV file.
docker run --rm --env-file ./path/to/.env vividvilla/rundeck-cli:latest --help
- To update the version, change
RD_CLI_VERSION
in Dockerfile and create a PR.