-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32f327b
commit c697e4d
Showing
4 changed files
with
30 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
version: "3.9" | ||
|
||
name: ${selectedProjectName}-redis | ||
|
||
services: | ||
# This is your local Redis database instance | ||
redis-db: | ||
image: redis | ||
restart: always | ||
volumes: | ||
- ${selectedProjectName}-data:/data | ||
ports: | ||
- "6969:6379" # Access the Redis DB at port 6969 | ||
|
||
# Use RedisInsight to view and manage Redis at localhost:8069 | ||
redisinsight: | ||
image: redis/redisinsight:latest | ||
restart: always | ||
ports: | ||
- "8069:8001" | ||
environment: | ||
- REDIS_URL=redis://redis-db:6379 | ||
|
||
volumes: | ||
${selectedProjectName}-data: | ||
driver: local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters