mirror of
https://github.com/TeamPiped/Piped-Docker.git
synced 2024-12-12 21:30:41 +05:30
Add support for docker compose.
This commit is contained in:
parent
597bdfb23d
commit
099a59cf8a
@ -5,7 +5,7 @@ if [ -z "$(which docker-compose)" ]; then
|
||||
fi
|
||||
|
||||
# Docker-Compose version check, to prevent "Unsupported configuration option"
|
||||
COMPOSE_VERSION=$(docker-compose version --short)
|
||||
COMPOSE_VERSION=$(docker-compose version --short 2>/dev/null || docker compose version --short 2>/dev/null)
|
||||
REQUIRED_COMPOSE_VERSION="1.28.0"
|
||||
if [[ $(printf '%s\n' "$REQUIRED_COMPOSE_VERSION" "$COMPOSE_VERSION" | sort -V | head -n1) != $REQUIRED_COMPOSE_VERSION ]]; then
|
||||
echo "Your docker-compose version of $COMPOSE_VERSION is too old. Please upgrade to $REQUIRED_COMPOSE_VERSION or higher."
|
||||
|
Loading…
Reference in New Issue
Block a user