GitHub user tisonkun added a comment to the discussion: 请问kvrocks是否支持通过命令行或环境变量配置密码、端口、日志目录等参数?(方便使用docker)
Currently, Kvrocks accepts only `-c` option to identify the location of config file. You can dynamically generate the config file before starting a service. For example, Kvrocks' Dockerfile writes: ```dockerfile RUN sed -i -e 's%dir /tmp/kvrocks%dir /var/lib/kvrocks%g' ./conf/kvrocks.conf # ... ENTRYPOINT ["./bin/kvrocks", "-c", "./conf/kvrocks.conf"] ``` GitHub link: https://github.com/apache/incubator-kvrocks/discussions/848#discussioncomment-3616756 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
