#! /usr/bin/env bash # # Prelude - make bash behave sanely # http://redsymbol.net/articles/unofficial-bash-strict-mode/ # set -euo pipefail # Beware of CDPATH gotchas causing cd not to work correctly when a user # has set this in their environment # https://bosker.wordpress.com/2012/02/12/bash-scripters-beware-of-the-cdpath/ unset CDPATH readonly INCLUDE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # shellcheck source=bin/setup-tools . "${INCLUDE}"/setup-tools echo ">> running triton deploy with docker-compose" ensure_command triton ensure_triton_cns_is_enabled get_triton_details write_env_file export DOCKER_HOST=$_DOCKER_HOST export DOCKER_CERT_PATH=$_DOCKER_CERT_PATH # Do not TLS verify for now, incompatibilities between circleci and joyent export DOCKER_TLS_VERIFY= docker-compose pull docker-compose up -d