Skip to content

Commit 14145a5

Browse files
committed
add broker profile for containers
1 parent 7564f05 commit 14145a5

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

.devcontainer/scripts/cc-containers

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# dev (default) DBs + UAA + nginx (typical development)
1414
# minimal UAA + nginx only (for local brew DBs)
1515
# full All services including diego mocks
16+
# broker Dev + Service Broker (for testing service broker interactions)
1617
# s3 Dev + SeaweedFS (S3 blobstore, local only)
1718
#
1819
# Examples:
@@ -31,6 +32,7 @@ case "$1" in
3132
dev) docker compose --profile dev up -d --no-recreate ;;
3233
minimal) docker compose up -d --no-recreate ;;
3334
full) docker compose --profile dev --profile broker --profile s3 --profile diego up -d --no-recreate ;;
35+
broker) docker compose --profile dev --profile broker up -d --no-recreate ;;
3436
s3) docker compose --profile dev --profile s3 up -d --no-recreate ;;
3537
*) echo "Unknown profile: $2"; exit 1 ;;
3638
esac ;;

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ cc-containers start # DBs + UAA + nginx (typical dev)
105105
cc-containers start minimal # UAA + nginx only (for databases via brew)
106106
cc-containers start full # All services
107107
cc-containers start s3 # Dev + SeaweedFS (S3 testing, local only)
108+
cc-containers start broker # Dev + CATS service broker
108109
cc-containers stop # Stop all
109110
cc-containers logs [service] # Follow logs
110111
cc-containers status # Show status

0 commit comments

Comments
 (0)