Minor update.

This commit is contained in:
Ali
2026-04-09 17:25:21 +08:00
parent b01f625cb0
commit 758c51ed36
2 changed files with 4 additions and 4 deletions

View File

@@ -146,7 +146,7 @@ restart_containers() {
sleep 1
echo "Starting containers..."
docker compose -f "$COMPOSE_FILE" up
docker compose -f "$COMPOSE_FILE" up -d
echo "Done!"
}
@@ -158,7 +158,7 @@ start_containers() {
check_compose_file || return 1
echo "Starting containers..."
docker compose -f "$COMPOSE_FILE" up
docker compose -f "$COMPOSE_FILE" up -d
echo "Done!"
}

View File

@@ -169,7 +169,7 @@ restart_containers() {
sleep 1
echo "Starting containers..."
docker compose -f "$COMPOSE_FILE" up
docker compose -f "$COMPOSE_FILE" up -d
echo "Done!"
}
@@ -181,7 +181,7 @@ start_containers() {
check_compose_file || return 1
echo "Starting containers..."
docker compose -f "$COMPOSE_FILE" up
docker compose -f "$COMPOSE_FILE" up -d
echo "Done!"
}