-
Notifications
You must be signed in to change notification settings - Fork 3
docs(docker): add some docker tips and tricks #2
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
Conversation
|
AHA! Another entry is needed: How do I upgrade? Just stop and restart? 🤔 In case you have not noticed, I am not an expert in docker. Generally, I leave that to the DevOps or |
|
Thanks for the PR, I've provided some feedback. |
| it to suit your needs. | ||
| 1. Run `docker-compose up` to run within the current shell. Add the `-d` option for | ||
| detached so you can run it in the background: `docker-compose -d up`. | ||
| 1. [Optional] Run `lazydocker` so you can always see what is happening. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While I don't mind this being mentioned (perhaps as "something like lazydocker" to avoid directly recommending a specific third-party tool in tt-rss's installation guide), it'd be best to stick with docker and docker compose commands as the initial suggestions for how to check things.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hum, I am conflicted here. Docker does not have the nicest UI, and it can be tricky to get the right things out of it. Lazydocker is one, of many, tools that allow you more control. On the one hand, it's nice to have. On the other, I can see how it might be too much hassle to recommend an external tool. 🤔
One of the main thing is log access: what is going on when things are not working? Yes, we can have logs with docker show log (or whatever the command it), so maybe that's enough to say?
🤔
Nothing major, just some things I had to google when I was an installation. It could be helpful to others…