Home

Awesome

Gantry - Docker service updater

Release License Image Size Docker Pulls Build Coverage CodeFactor Grade

Gantry automatically updates selected docker swarm services to newer images with the same tag. It is inspired by but enhanced Shepherd.

Usage

Gantry is released as a container image. You can create a docker service and run it on a swarm manager node.

docker service create \
  --name gantry \
  --mode replicated-job \
  --constraint "node.role==manager" \
  --mount type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock \
  shizunge/gantry

The examples folder contains example docker compose files, and more methods to launch Gantry, like at a specific time and via webhook.

You can also run Gantry as a script directly on the host outside the container

./src/entrypoint.sh

Gantry is written to work with busybox ash (v1.35+) as well as bash.

Configurations

You can configure the most behaviors of Gantry via environment variables.

Common

Environment VariableDefaultDescription
GANTRY_LOG_LEVELINFOControl how many logs generated by Gantry. Valid values are NONE, ERROR, WARN, INFO, DEBUG.
GANTRY_NODE_NAMEAdd node name to logs. If not set, Gantry will use the host name of the Docker Swarm's manager, which is read from either the Docker daemon socket of current node or DOCKER_HOST.
GANTRY_POST_RUN_CMDCommand(s) to eval after each updating iteration. For example, you can use this to remove unused containers, networks and images and update standalone docker containers.
GANTRY_PRE_RUN_CMDCommand(s) to eval before each updating iteration. For example, you can use this to remove unused containers, networks and images and update standalone docker containers. If you changed Gantry configurations in the pre-run command(s), the new value would apply to the following updating. If the last pre-run command failed, Gantry would skip updating services.
GANTRY_SLEEP_SECONDS0Interval between two updates. Set it to 0 to run Gantry once and then exit. When this is a non-zero value, after an updating, Gantry will sleep until the next scheduled update. The actual sleep time is this value minus time spent on updating services.
TZSet timezone for time in logs.

Gantry bases on Docker command line, environment variables for Docker command line also works for Gantry.

To login to registries

Environment VariableDefaultDescription
DOCKER_CONFIGThe location of the client configuration files where authentication stores. It applys to all Docker commands, i.e. to all services. See Authentication. You can apply a different value to a particular service via labels.
GANTRY_REGISTRY_CONFIGSee Authentication.
GANTRY_REGISTRY_CONFIG_FILESee Authentication.
GANTRY_REGISTRY_CONFIGS_FILESee Authentication.
GANTRY_REGISTRY_HOSTSee Authentication.
GANTRY_REGISTRY_HOST_FILESee Authentication.
GANTRY_REGISTRY_PASSWORDSee Authentication.
GANTRY_REGISTRY_PASSWORD_FILESee Authentication.
GANTRY_REGISTRY_USERSee Authentication.
GANTRY_REGISTRY_USER_FILESee Authentication.

To select services

Environment VariableDefaultDescription
GANTRY_SERVICES_EXCLUDEDA space separated list of services names that are excluded from updating.
GANTRY_SERVICES_EXCLUDED_FILTERSlabel=gantry.services.excluded=trueA space separated list of filters, e.g. label=project=project-a. Exclude services which match the given filters from updating. The default value allows you to add label gantry.services.excluded=true to services to exclude them from updating. Note that multiple filters will be logical ANDED. An empty string means no filters, as a result Gantry will not exclude any services.
GANTRY_SERVICES_FILTERSA space separated list of filters that are accepted by docker service ls --filter to select services to update, e.g. label=project=project-a. Note that multiple filters will be logical ANDED. An empty string means no filters, as a result Gantry will update all services. Also see How to filters multiple services by name.

NOTE: Gantry reads labels on the services not on the containers. The labels need to go to the deploy section, if you are using docker compose files to setup your services.

To check if new images are available

Environment VariableDefaultDescription
GANTRY_MANIFEST_CMDbuildxValid values are buildx, manifest, and none.<br>Set which command for manifest inspection.<ul><li>docker buildx imagetools inspect</li><li>docker manifest inspect</li></ul>Set to none to skip checking the manifest. As a result of skipping, docker service update always runs. Also see FAQ which GANTRY_MANIFEST_CMD to use. You can apply a different value to a particular service via labels.
GANTRY_MANIFEST_NUM_WORKERS1The maximum number of GANTRY_MANIFEST_CMD that can run in parallel.
GANTRY_MANIFEST_OPTIONSOptions added to the docker buildx imagetools inspect or options to docker manifest inspect, depending on GANTRY_MANIFEST_CMD value, for all services. You can apply a different value to a particular service via labels.

To add options to services update

Environment VariableDefaultDescription
GANTRY_ROLLBACK_ON_FAILUREtrueSet to true to enable rollback when updating fails. Set to false to disable the rollback. You can apply a different value to a particular service via labels.
GANTRY_ROLLBACK_OPTIONSOptions added to the docker service update --rollback command for all services. You can apply a different value to a particular service via labels.
GANTRY_UPDATE_JOBSfalseSet to true to update replicated-job or global-job. Set to false to disable updating jobs. Gantry adds additional options to docker service update when there is no running tasks. You can apply a different value to a particular service via labels.
GANTRY_UPDATE_NUM_WORKERS1The maximum number of updates that can run in parallel.
GANTRY_UPDATE_OPTIONSOptions added to the docker service update command for all services. You can apply a different value to a particular service via labels.
GANTRY_UPDATE_TIMEOUT_SECONDS0Error out if updating of a single service takes longer than the given time. Set to 0 to disable timeout. You can apply a different value to a particular service via labels.

After updating

Environment VariableDefaultDescription
GANTRY_CLEANUP_IMAGEStrueSet to true to clean up the updated images on all hosts. Set to false to disable the cleanup. Before cleaning up, Gantry will try to remove any exited and dead containers that are using the images.
GANTRY_CLEANUP_IMAGES_OPTIONSOptions added to the docker service create command to create a global job for images removal. You can use this to add a label to the service or the containers.
GANTRY_NOTIFICATION_APPRISE_URLEnable notifications on service update with Apprise. This must point to the notification endpoint (e.g. http://apprise:8000/notify)
GANTRY_NOTIFICATION_CONDITIONallValid values are all and on-change. Specifies the conditions under which notifications are sent. Set to all to send notifications every run. Set to on-change to send notifications only when there are updates or errors.
GANTRY_NOTIFICATION_TITLEAdd an additional message to the notification title.

Labels

Labels can be added to services to modify the behavior of Gantry for particular services. When Gantry sees the following labels on a service, it will modify the Docker command line only for that service. The value on the label overrides the global environment variables.

NOTE: Gantry reads labels on the services not on the containers. The labels need to go to the deploy section, if you are using docker compose files to setup your services.

LabelDescription
gantry.auth.config=<configuration>Override DOCKER_CONFIG. See Authentication.
gantry.services.excluded=trueExclude the services from updating if you are using the default GANTRY_SERVICES_EXCLUDED_FILTERS.
gantry.manifest.cmd=<command>Override GANTRY_MANIFEST_CMD.
gantry.manifest.options=<string> Override GANTRY_MANIFEST_OPTIONS.
gantry.rollback.on_failure=<boolean>Override GANTRY_ROLLBACK_ON_FAILURE.
gantry.rollback.options=<string>Override GANTRY_ROLLBACK_OPTIONS.
gantry.update.jobs=<boolean>Override GANTRY_UPDATE_JOBS.
gantry.update.options=<string>Override GANTRY_UPDATE_OPTIONS.
gantry.update.timeout_seconds=<number>Override GANTRY_UPDATE_TIMEOUT_SECONDS.

FAQ

Authentication

FAQ

Migrate from Shepherd

Development

Gantry is written to work with busybox ash (v1.35+), thus it could run easily in an alpine-based container without additional packages installed. One exception is that the notification feature requires curl. Gantry is also tested in bash.

shellcheck will run on push to enforce the best practices of writing shell scripts. Some checks are disabled thanks to busybox ash supports more features than POSIX sh. You can find the list of disabled checks in .shellcheckrc.

To run shellcheck locally:

shellcheck src/*.sh tests/*.sh

The tests folder contains end-to-end tests, which cover the majority of the configuration options.

Contacts

If you have any problems or questions, please contact me through a GitHub issue.