Skip to content

Commit

Permalink
adds entra instance to test the a different flow
Browse files Browse the repository at this point in the history
  • Loading branch information
ncode committed Dec 9, 2023
1 parent d90308b commit eb6346a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions configs/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ services:
- "redis0001"
- "6379"

redis0003:
image: redis:latest
container_name: redis0003
volumes:
- ./redis:/usr/local/etc/redis:rw
command:
- "redis-server"
- "/usr/local/etc/redis/redis.conf"
- "--slaveof"
- "redis0001"
- "6379"

bedel_redis0001:
image: ncode/bedel:dev
container_name: bedel_redis0001
Expand Down Expand Up @@ -50,6 +62,17 @@ services:
- "-l"
- "info"

bedel_redis0003:
image: ncode/bedel:dev
container_name: bedel_redis0003
depends_on:
- vault
command:
- "run"
environment:
ADDRESS: "redis0003:6379"
PASSWORD: "bedel-integration-test"

vault:
image: hashicorp/vault:latest
container_name: vault
Expand Down

0 comments on commit eb6346a

Please sign in to comment.