scons_gd/scons/testing/docker/ubuntu19.10/test/stop_test_shell.sh
2022-10-15 16:06:26 +02:00

18 lines
277 B
Bash
Executable File

#!/bin/bash
# store starting working directory
OLD_WD=$PWD
# determine working directory of shell script
WD=$(dirname "$(readlink -f "$0")")
cd $WD
# call docker container with local user
export DOCKERUID=$(id -u)
export DOCKERGID=$(id -g)
docker-compose down
cd $OLD_WD