mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-05-31 00:04:27 +08:00
10 lines
221 B
Bash
Executable file
10 lines
221 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd $(dirname $0)/../..
|
|
|
|
if which docker >/dev/null 2>&1; then
|
|
exec docker compose exec ${APP_CONTAINER:-webapp} "$@"
|
|
else
|
|
# docker not found means we're probably in the app container already
|
|
exec "$@"
|
|
fi
|