Skip to content

Commit

Permalink
chore(docker-compose): Add RedisInsight (#668)
Browse files Browse the repository at this point in the history
Adds [RedisInsight](https://redis.io/insight/) to the compose setup
  • Loading branch information
oskogstad authored Apr 23, 2024
1 parent 22b070c commit c738797
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docker-compose-no-webapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,17 @@ services:
timeout: 5s
retries: 5

redisinsight:
container_name: redisinsight
image: redis/redisinsight
ports:
- "8001:80"
environment:
RI_APP_PORT: 80
RI_APP_HOST: '0.0.0.0'
volumes:
- redisinsight_cache:/data

dialogporten-service:
build:
context: .
Expand Down Expand Up @@ -70,3 +81,7 @@ services:
- ReplicationSlotName=outboxmessage_replication_slot
- PublicationName=outboxmessage_publication
- TableName=OutboxMessage

volumes:
redisinsight_cache:
driver: local

0 comments on commit c738797

Please sign in to comment.