-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
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
updated instructions for .env and compose files when using non standard port in redis #5
base: main
Are you sure you want to change the base?
Conversation
Is it possible for the user to only change the port in the .env file and not touch the docker compose file? |
Unfortunately both files are required to be edited.
From what i have tested editing both files should also have no impact for both use cases of standard and non standard ports as the port value by default is always 6379. Additional info/command is included for folks that may want to run on non standard ports. This is very beneficial when there is already a redis instance running for some other application. Tested with latest version too. Works as intended. |
Redis might require passing port value in commands section (in compose file) when using non standard ports. Added instructions for achieving the same. Should not be a breaking change. Tested with both configs works as expected.