| #! /usr/bin/env sh# Exit in case of errorset -eDOMAIN=${DOMAIN?Variable not set} \TRAEFIK_TAG=${TRAEFIK_TAG?Variable not set} \STACK_NAME=${STACK_NAME?Variable not set} \TAG=${TAG?Variable not set} \docker-compose \-f docker-compose.yml \config > docker-stack.ymldocker-auto-labels docker-stack.ymldocker stack deploy -c docker-stack.yml --with-registry-auth "${STACK_NAME?Variable not set}"
 |