Skip to content

Commit

Permalink
ci: Fix docker compose command for pipeline
Browse files Browse the repository at this point in the history
the program docker-compose itself is imported into docker command and deprecated
  • Loading branch information
anmoel committed Aug 8, 2024
1 parent 41c9521 commit a14f082
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/start-services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ set -eo pipefail
source ./script.source

echo "Starting Nexus ${NEXUS_TYPE} and other required services..."
docker-compose up -d
docker compose up -d

./wait-for-nexus.sh
2 changes: 1 addition & 1 deletion scripts/stop-services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -eo pipefail
source ./script.source

echo "Stopping the services..."
docker-compose down
docker compose down

0 comments on commit a14f082

Please sign in to comment.