Skip to content
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
2 changes: 1 addition & 1 deletion DEPLOYMENT_DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ spec:
spec:
containers:
- name: lightning-decoder
image: lightning-decoder:latest
image: lightning-decoder:0.7.1 # Update to match your built image version

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Tag the image before referencing it in Kubernetes

When readers follow this page, the documented build commands tag the image as lightning-decoder (which Docker treats as lightning-decoder:latest; Docker's image reference docs state, "If no tag is provided, Docker defaults to latest"). This manifest now references lightning-decoder:0.7.1, so applying it after the documented build steps will look for a tag the instructions never create or push, causing image pull failures unless the reader manually retags the image; either update the build/push examples to create :0.7.1 or keep this manifest aligned with the tag those steps produce.

Useful? React with 👍 / 👎.

ports:
- containerPort: 80
resources:
Expand Down
Loading