docker-compose で Redis連携
1585 ワード
Append-only fileで永続化設定
docker-compose.yml
version: '2'
services:
redis:
image: redis:3.2.9
ports:
- "6379:6379"
command: redis-server --appendonly yes --requirepass foobared
volumes:
- redis-data:/data
volumes:
redis-data:
driver: local
■ ポイント
・appendonly yes
参照 Append-only file
・requirepass foobared
参照 docker-compose example
任意のパスワード指定 ex) foobared
・volumesで永続化
Author And Source
この問題について(docker-compose で Redis連携), 我々は、より多くの情報をここで見つけました https://qiita.com/Ikumi/items/d2ea4e3f8a8143b7fa56著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .