You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- 2@freakish: That's a weak argument IMNSHO, for several reasons: 1. More often than not, the use of docker is the wrong way to do things, and a way to cut corners rather than properly configure a system to be able to run programs. 2. It is a docker-based solution's responsibility to cater to how programs run, rather than the other way around. 3. At worst, one can wrap a cmdline-based program with a script which converts environment variables to cmdline parameters.einpoklum– einpoklum2025-05-20 18:57:48 +00:00Commented May 20 at 18:57
- 3There is no question of priority, sensible programs follow order - hardcode, config file, environment, command line.Basilevs– Basilevs2025-05-20 20:08:40 +00:00Commented May 20 at 20:08
- 2What are good habits for designing command line arguments? - tangentially relatedBasilevs– Basilevs2025-05-20 20:19:09 +00:00Commented May 20 at 20:19
- 1@Basilevs While I agree with that override priority in general, I would add that there are some edge cases with config files that are loaded dynamically (not from a static location but due to environment variables or command line options). In extreme cases, where the program arguments are not options but rather commands (that can also be repeated), there might be commands to read files and interpret their contents as further commands - overwriting previous options but then being overwritten by those coming afterwards.Bergi– Bergi2025-05-21 00:27:55 +00:00Commented May 21 at 0:27
- 1@einpoklum whether your software requires docker or not is irrelevant. The point is that docker exists, and is popular solution. Adding support for env variables is not costly at all. Pushing this responsibility elsewhere leads to more difficult project management. And what would be the advantage of doing that?freakish– freakish2025-05-21 07:20:18 +00:00Commented May 21 at 7:20
| Show 9 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you