Skip to content

Commit

Permalink
Update local-startup.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
hiepmai-babylonchain authored Jul 12, 2024
1 parent eeb8970 commit 67da54f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/local-startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ $(docker ps -q -f name=^/${MONGO_CONTAINER_NAME}$) ]; then
else
echo "Starting MongoDB"
# Start MongoDB
docker-compose up mongodb -d
docker-compose up -d mongodb
fi

# Check if the RabbitMQ container is already running
Expand All @@ -17,5 +17,5 @@ if [ $(docker ps -q -f name=^/${RABBITMQ_CONTAINER_NAME}$) ]; then
else
echo "Starting RabbitMQ"
# Start RabbitMQ
docker-compose up rabbitmq -d
fi
docker-compose up -d rabbitmq
fi

0 comments on commit 67da54f

Please sign in to comment.