use keydb

This commit is contained in:
riku6460 2023-12-21 07:15:22 +09:00
parent 00c9e43861
commit e24c90968d
No known key found for this signature in database
GPG Key ID: 27414FA27DB94CF6
3 changed files with 8 additions and 8 deletions

View File

@ -96,7 +96,7 @@ redis:
# #db: 1 # #db: 1
#redisForTimelines: #redisForTimelines:
# host: redis # host: keydb
# port: 6379 # port: 6379
# #family: 0 # 0=Both, 4=IPv4, 6=IPv6 # #family: 0 # 0=Both, 4=IPv4, 6=IPv6
# #pass: example-pass # #pass: example-pass
@ -106,7 +106,7 @@ redis:
# ┌───────────────────────────┐ # ┌───────────────────────────┐
#───┘ MeiliSearch configuration └───────────────────────────── #───┘ MeiliSearch configuration └─────────────────────────────
# You can set scope to local (default value) or global # You can set scope to local (default value) or global
# (include notes from remote). # (include notes from remote).
#meilisearch: #meilisearch:
@ -185,7 +185,7 @@ proxyRemoteFiles: true
signToActivityPubGet: true signToActivityPubGet: true
# For security reasons, uploading attachments from the intranet is prohibited, # For security reasons, uploading attachments from the intranet is prohibited,
# but exceptions can be made from the following settings. Default value is "undefined". # but exceptions can be made from the following settings. Default value is "undefined".
# Read changelog to learn more (Improvements of 12.90.0 (2021/09/04)). # Read changelog to learn more (Improvements of 12.90.0 (2021/09/04)).
#allowedPrivateNetworks: [ #allowedPrivateNetworks: [
# '127.0.0.1/32' # '127.0.0.1/32'

View File

@ -96,7 +96,7 @@ redis:
# #db: 1 # #db: 1
#redisForTimelines: #redisForTimelines:
# host: redis # host: keydb
# port: 6379 # port: 6379
# #family: 0 # 0=Both, 4=IPv4, 6=IPv6 # #family: 0 # 0=Both, 4=IPv4, 6=IPv6
# #pass: example-pass # #pass: example-pass

View File

@ -3,15 +3,15 @@ version: "3"
# このconfigは、 dockerでMisskey本体を起動せず、 redisとpostgresql などだけを起動します # このconfigは、 dockerでMisskey本体を起動せず、 redisとpostgresql などだけを起動します
services: services:
redis: keydb:
restart: always restart: always
image: redis:7-alpine image: eqalpha/keydb:latest
ports: ports:
- "6379:6379" - "6379:6379"
volumes: volumes:
- ./redis:/data - ./keydb:/data
healthcheck: healthcheck:
test: "redis-cli ping" test: "keydb-cli ping"
interval: 5s interval: 5s
retries: 20 retries: 20