mirror of
https://github.com/kou029w/fogtype.com
synced 2025-01-17 23:55:02 +00:00
9 lines
129 B
Bash
Executable file
9 lines
129 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
cd "${HOME}/${REMOTE_HOST:-fogtype.com}"
|
|
|
|
git pull --rebase
|
|
docker compose up --detach --remove-orphans
|
|
|
|
cd -
|