17 lines
388 B
Bash
17 lines
388 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# This is the top-level test script that runs in the host.
|
||
|
|
||
|
HERE=$(dirname "$0")
|
||
|
|
||
|
[ -d "$HERE/outdir" ] && rm -r "$HERE/outdir"
|
||
|
|
||
|
set -e
|
||
|
mkdir "$HERE/outdir"
|
||
|
export MY_UID=$(id -u)
|
||
|
export MY_GID=$(id -g)
|
||
|
export WEST_IN_HOST=$(realpath "$HERE/..")
|
||
|
# Store the final config as reference
|
||
|
docker-compose config > $HERE/outdir/config.yml
|
||
|
docker-compose up --force-recreate --build
|