-
Notifications
You must be signed in to change notification settings - Fork 485
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add valkey stub * add .idea files to gitignore * add valkey-cli to sail bin * fix valkey stub add valkey support to InteractsWithDockerComposeServices.php file * Update .gitignore * Update sail --------- Co-authored-by: Taylor Otwell <[email protected]>
- Loading branch information
1 parent
f649351
commit f77164c
Showing
3 changed files
with
31 additions
and
1 deletion.
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,12 @@ | ||
valkey: | ||
image: 'valkey/valkey:alpine' | ||
ports: | ||
- '${FORWARD_VALKEY_PORT:-6379}:6379' | ||
volumes: | ||
- 'sail-valkey:/data' | ||
networks: | ||
- sail | ||
healthcheck: | ||
test: ["CMD", "valkey-cli", "ping"] | ||
retries: 3 | ||
timeout: 5s |