12 lines
158 B
Bash
Executable File
12 lines
158 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git pull
|
|
|
|
echo "Pulling latest docker images"
|
|
docker compose pull
|
|
|
|
echo "Restarting services"
|
|
docker compose up -d --remove-orphans
|
|
|
|
echo "Done"
|