Skip to content

Docs: update README.md #2672

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,31 @@ make build validate test
# run tests for only one image
make IMAGE_NAMES=devtools-terraform-v1beta1 build validate test
```

```mermaid
graph TD
A[images/] --> B[<image_name>/]
B --> C[Dockerfile]
B --> D[context/README.md]
B --> E[tests/]
E --> F[run]
E --> G[README.md]

H[Registries] --> I[ghcr.io/coopnorge/...]
H --> J[europe-north1-docker.pkg.dev/...]

K[Development] --> L[Using devtools]
L --> M[docker compose build]
L --> N[make help]
L --> O[make validate]
L --> P[make watch]

K --> Q[Without devtools]
Q --> R[poetry install]
Q --> S[make build]
Q --> T[make validate]
Q --> U[make test]

V[Useful command] --> W[make IMAGE_NAMES=... build validate test]
```