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
Information is incorrect
https://docs.docker.com/compose/how-tos/startup-order/
healthcheck: test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]
This is not working, I think it should be with $$ (e.g. $${POSTGRES_USER}).
Am I right?
Transform $ into $$
AND IMPROVE DOCS REGARDING ENVIRONMENT VARIABLES DURING HEALTHCHECK (Spent 2h debugging the issue and I'm still not sure how it works exactly).
The text was updated successfully, but these errors were encountered:
https://docs.docker.com/reference/compose-file/interpolation/
Also found this where it says:
The way this is being expressed is very confusing for me. I barely understand.
PLEASE also improve this section.
Sorry, something went wrong.
No branches or pull requests
Is this a docs issue?
Type of issue
Information is incorrect
Description
https://docs.docker.com/compose/how-tos/startup-order/
healthcheck: test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]
This is not working, I think it should be with $$ (e.g. $${POSTGRES_USER}).
Am I right?
Location
https://docs.docker.com/compose/how-tos/startup-order/
Suggestion
Transform $ into $$
AND IMPROVE DOCS REGARDING ENVIRONMENT VARIABLES DURING HEALTHCHECK (Spent 2h debugging the issue and I'm still not sure how it works exactly).
The text was updated successfully, but these errors were encountered: