10 lines
188 B
Bash
Executable File
10 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# https://stackoverflow.com/a/1482133/270712
|
|
MYDIR=`dirname -- "$( readlink -f -- "$0"; )";`
|
|
pushd "$MYDIR"
|
|
git pull
|
|
docker compose -f docker-compose.yml up build
|
|
popd
|