mirror of
https://github.com/kou029w/fogtype.com
synced 2025-01-18 08:05:02 +00:00
10 lines
129 B
Text
10 lines
129 B
Text
|
#!/bin/sh
|
||
|
set -eu
|
||
|
|
||
|
cd "${HOME}/${REMOTE_HOST:-fogtype.com}"
|
||
|
|
||
|
git pull --rebase
|
||
|
docker compose up --detach --remove-orphans
|
||
|
|
||
|
cd -
|