diff options
| author | Marie <marie@kaifa.ch> | 2023-10-21 18:02:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-21 18:02:55 +0200 |
| commit | bd639708ffa65764cfd1956f73b493e339afb7cb (patch) | |
| tree | 5b2005d9f27aaa1e88b0eb17fa4c4d1ae216252e | |
| parent | fix: decrement happening on normal renotes (diff) | |
| download | sharkey-bd639708ffa65764cfd1956f73b493e339afb7cb.tar.gz sharkey-bd639708ffa65764cfd1956f73b493e339afb7cb.tar.bz2 sharkey-bd639708ffa65764cfd1956f73b493e339afb7cb.zip | |
chore: update compose example to use keydb and fix network related issue
| -rw-r--r-- | docker-compose.yml.example | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/docker-compose.yml.example b/docker-compose.yml.example index 287a23cab8..244b86e91f 100644 --- a/docker-compose.yml.example +++ b/docker-compose.yml.example @@ -2,6 +2,7 @@ version: "3" services: web: +# image: ghcr.io/transfem-org/sharkey:stable build: . restart: always links: @@ -17,20 +18,19 @@ services: - "3000:3000" networks: - shonk - - web volumes: - ./files:/sharkey/files - ./.config:/sharkey/.config:ro redis: restart: always - image: redis:7-alpine + image: eqalpha/keydb:latest networks: - shonk volumes: - ./redis:/data healthcheck: - test: "redis-cli ping" + test: "keydb-cli ping" interval: 5s retries: 20 @@ -64,5 +64,3 @@ services: networks: shonk: - web: - external: true |