9 lines
113 B
Bash
Executable File
9 lines
113 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git pull
|
|
|
|
echo "Updating services"
|
|
docker compose up -d --pull always --remove-orphans
|
|
|
|
echo "Done"
|