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
The tool should be able to find a Secret in Envs. For Example, for images that are produced from such Dockerfile:
FROM docker.io/library/python:3.8 ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 WORKDIR /app COPY requirements.txt /app/ RUN pip install -r requirements.txt ENV POSTGRES_HOST=database ENV POSTGRES_USER=postgres ENV POSTGRES_PASSWORD=postgres ENV POSTGRES_DB=shopping_list COPY . /app/ EXPOSE 8000 CMD ["gunicorn", "--bind", "0.0.0.0:8000", "app:app"]
It should report the Postgres password.
The text was updated successfully, but these errors were encountered:
Hi @53845714nF thanks for raising the issue. This seems like an valid feature.
Sorry, something went wrong.
ibreakthecloud
No branches or pull requests
The tool should be able to find a Secret in Envs.
For Example, for images that are produced from such Dockerfile:
It should report the Postgres password.
The text was updated successfully, but these errors were encountered: