mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireSync.git
synced 2026-05-30 23:44:03 +08:00
10 lines
199 B
Bash
Executable file
10 lines
199 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. $(dirname $0)/prelude.bash
|
|
|
|
if which docker >/dev/null 2>&1; then
|
|
exec docker compose exec $APP_SERVICE "$@"
|
|
else
|
|
# no docker means we're probably already in docker
|
|
exec "$@"
|
|
fi
|