mirror of
https://github.com/kou029w/daraz-tek.beta.fogtype.com.git
synced 2025-01-18 16:08:07 +00:00
9 lines
152 B
Bash
Executable file
9 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
cd "${HOME}/daraz-tek.beta.fogtype.com"
|
|
|
|
git pull --recurse-submodules --rebase --autostash
|
|
docker compose up --build --detach
|
|
|
|
cd -
|