-
I try to config the password by using adding garnet:
image: ghcr.io/microsoft/garnet
ulimits:
memlock: -1
volumes:
- garnetdata:/data
ports:
- "6379:6379"
command: --password 12345678 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
@XiaoHeitu and @Niek - any idea on integration of command line args here? |
Beta Was this translation helpful? Give feedback.
-
Do you happen to have any updates on this? With Redis we can simply do:
|
Beta Was this translation helpful? Give feedback.
-
@Misiu That should work: services:
garnet:
ulimits:
memlock: -1
image: ghcr.io/microsoft/garnet
volumes:
- garnet-data:/data
ports:
- "6379:6379"
command: --auth Password --password <replace_password_here>
volumes:
garnet-data: |
Beta Was this translation helpful? Give feedback.
@Misiu That should work: