Skip to content

Commit

Permalink
fix(justfile): add --should-prepend=false option to docker image publ…
Browse files Browse the repository at this point in the history
…ishing command to prevent unwanted prefixing

The addition of the --should-prepend=false option ensures that the
repository name is used as-is when publishing the Docker image,
preventing any unwanted prefixes that could lead to confusion or errors
in image retrieval.
  • Loading branch information
cybersiddhu committed Oct 17, 2024
1 parent 471213a commit 48736d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ deploy-frontend cluster cluster-state pulumi-state gcp-credentials-file ref toke

# create and publish docker image
{{dagger_bin}} call -m {{container_module}} \
with-repository --repository=$REPOSITORY \
with-repository --repository=$REPOSITORY --should-prepend=false \
publish-frontend-from-repo-with-deployment-id --token={{token}} \
--user={{user}} --password={{pass}} \
--deployment-id=$deployment_id
Expand Down

0 comments on commit 48736d7

Please sign in to comment.