19 lines
221 B
Bash
Executable File
19 lines
221 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "===== Bruchtal Deploy $(date) ====="
|
|
|
|
cd /docker/Bruchtal
|
|
|
|
echo "Pulling latest changes..."
|
|
git pull
|
|
|
|
echo "Updating containers..."
|
|
docker restart bruchtal-docs
|
|
|
|
|
|
echo "Deploy finished."
|
|
#test
|
|
|