Skip to content

Commit

Permalink
chore: Update Docker Compose configuration for MOCKBIN. (#160)
Browse files Browse the repository at this point in the history
- Change `MOCKBIN_REDIS` environment variable to use `redis://` protocol
- Add `MOCKBIN_QUIET` environment variable and set it to `false`
- Add `MOCKBIN_PORT` environment variable and set it to `8080`

Co-authored-by: Jack Kavanagh <jackkav@gmail.com>
  • Loading branch information
johnnyhuy and jackkav authored Jan 30, 2024
1 parent d3c0e67 commit 89ec251
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ services:
app:
build: .
environment:
MOCKBIN_REDIS: "//redis:6379"
MOCKBIN_REDIS: "redis://redis:6379"
MOCKBIN_QUIET: "false"
MOCKBIN_PORT: "8080"
MOCKBIN_REDIS_EXPIRE_SECONDS: 1000000000
links:
- redis
Expand Down

0 comments on commit 89ec251

Please sign in to comment.