mirror of
https://github.com/outbackdingo/xmidt.git
synced 2026-08-25 14:53:55 +00:00
* use argus for tr1d1um as webhook store * update config that includes admin token * save changes * small bash file linting fixes * consul latest works * Remove SNS as a dep
31 lines
874 B
Bash
Executable File
31 lines
874 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR=$( cd "$(dirname "$0")" || exit; pwd -P )
|
|
ROOT_DIR=$DIR/../../
|
|
|
|
pushd "$ROOT_DIR" || exit
|
|
echo "Building Simulator..."
|
|
docker build -t simulator:local "$ROOT_DIR/simulator"
|
|
popd || exit
|
|
|
|
echo "Building goaws..."
|
|
git clone [email protected]:kcajmagic/goaws.git /tmp/goaws
|
|
pushd /tmp/goaws || exit
|
|
git checkout adding_http_support
|
|
docker build -t goaws:local .
|
|
popd || exit
|
|
|
|
echo "Running services..."
|
|
CADUCEUS_VERSION=${CADUCEUS_VERSION:-0.4.2} \
|
|
ARGUS_VERSION=${ARGUS_VERSION:-0.3.9} \
|
|
TR1D1UM_VERSION=${TR1D1UM_VERSION:-0.5.3} \
|
|
SCYTALE_VERSION=${SCYTALE_VERSION:-0.1.5} \
|
|
PETASOS_VERSION=${PETASOS_VERSION:-0.1.4} \
|
|
TALARIA_VERSION=${TALARIA_VERSION:-0.5.9} \
|
|
THEMIS_VERSION=${THEMIS_VERSION:-0.4.3} \
|
|
SIMULATOR_VERSION=${SIMULATOR_VERSION:-local} \
|
|
docker-compose -f "$ROOT_DIR/deploy/docker-compose/docker-compose.yml" up -d "$@"
|
|
|
|
bash config_dynamodb.sh
|
|
|