diff options
| author | Marie <marie@kaifa.ch> | 2023-11-09 18:58:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-09 18:58:51 +0100 |
| commit | bd36fb60b22da35f51b72d6067f74feba08633bb (patch) | |
| tree | 4b2c4a6c1af6da7ece217eb21d19e2776fc6e6ad | |
| parent | chore: lint (diff) | |
| download | sharkey-bd36fb60b22da35f51b72d6067f74feba08633bb.tar.gz sharkey-bd36fb60b22da35f51b72d6067f74feba08633bb.tar.bz2 sharkey-bd36fb60b22da35f51b72d6067f74feba08633bb.zip | |
chore: swap keydb out for redis on compose example
| -rw-r--r-- | docker-compose.yml.example | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker-compose.yml.example b/docker-compose.yml.example index 244b86e91f..1e94c35d47 100644 --- a/docker-compose.yml.example +++ b/docker-compose.yml.example @@ -24,13 +24,13 @@ services: redis: restart: always - image: eqalpha/keydb:latest + image: redis:7-alpine networks: - shonk volumes: - ./redis:/data healthcheck: - test: "keydb-cli ping" + test: "redis-cli ping" interval: 5s retries: 20 |