17 lines
214 B
Bash
Executable File
17 lines
214 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."
|