Skip to content

Commit

Permalink
[yugabyte] Add docker container for dev
Browse files Browse the repository at this point in the history
  • Loading branch information
barroco committed Dec 2, 2024
1 parent 664417e commit a76291f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 14 additions & 0 deletions build/dev/docker-compose_dss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ../..
Expand Down

0 comments on commit a76291f

Please sign in to comment.