We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, is there any way of starting a docker container which uses the redis-stack image and set a securtity password?
The text was updated successfully, but these errors were encountered:
Yes you can do it with docker compose and a configuration file. In the configuration file you can put your password
version: '3' services: redis: image: redis/redis-stack-server:latest restart: always container_name: rds command: redis-server /usr/local/etc/redis/redis.conf ports: - "7001:6379" volumes: - /home/user/docker/redis/data:/data - /home/user/docker/redis/conf/redis.conf:/usr/local/etc/redis/redis.conf
Sorry, something went wrong.
No branches or pull requests
Hello, is there any way of starting a docker container which uses the redis-stack image and set a securtity password?
The text was updated successfully, but these errors were encountered: