diff --git a/Makefile b/Makefile index e5d971fe7..a518953f3 100644 --- a/Makefile +++ b/Makefile @@ -143,6 +143,10 @@ restart-all: build-dss down-locally start-locally start-locally: build/dev/run_locally.sh up -d +.PHONY: start-locally-with-yugabyte +start-locally-with-yugabyte: + COMPOSE_PROFILES=with-yugabyte build/dev/run_locally.sh up -d + .PHONY: probe-locally probe-locally: build/dev/probe_locally.sh diff --git a/build/dev/docker-compose_dss.yaml b/build/dev/docker-compose_dss.yaml index df0016dad..f47bc013c 100644 --- a/build/dev/docker-compose_dss.yaml +++ b/build/dev/docker-compose_dss.yaml @@ -22,6 +22,20 @@ services: start_period: 30s start_interval: 5s + local-dss-ybdb: + image: yugabytedb/yugabyte:2024.1.2.0-b77 + command: bin/yugabyted start --background=false + ports: + - "7000:7000" + - "9000:9000" + - "15433:15433" + - "5433:5433" + - "9042:9042" + restart: always + networks: + - dss_sandbox_default_network + profiles: ["with-yugabyte"] + local-dss-rid-bootstrapper: build: context: ../..