0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Redis互換で25倍高速な「Dragonfly」をdocker-composeで使用する際に--requirepassなどを設定する

Posted at

Dragonflyとは

redis互換で25倍速いらしいです。
JSONとかも標準で入れられるっぽい。
2023年5月10日時点でv1.2.1がリリースされているので本番運用しても大丈夫……っぽい。

confファイルはどこに置くのか?

わかりません……。
調べても出てこない……。

とりあえずパスつけたいときはどうすればよいのか

docker-compose.ymlにcommandを足せばOK

version: "3.8"
services:
  dragonfly:
    image: "docker.dragonflydb.io/dragonflydb/dragonfly"
    network_mode: "host"
    volumes:
      - dragonflydata:/data
    command: ["dragonfly", "--logtostderr", "--requirepass=SUPER_STRONG_PASSWORD"]
volumes:
  dragonflydata:

他にもbindとかいろいろ変更できるっぽいです。
詳しくは

ここのConfigurationを読んでみてください。

誰かredis.confみたいなものを置く場所を知っていたら教えてください……。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?