5 lines
130 B
Bash
Executable File
5 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
cd $(dirname $(readlink -f "$0"))
|
|
git fetch origin && git reset --hard origin/master && git pull
|
|
docker compose up -d
|