You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to tag the frontend images with environment-specific flags
to ensure that the correct frontend build is used for the corresponding deployment environment.
Summary:
The current deployment system utilizes Docker Compose stack to tag frontend
images based on the last commit SHA, which proves to be insufficient as frontend
images may vary based on build arguments and target deployment environments.
Therefore, to prevent using frontend images built for one environment in another
environment with different settings, an environment flag needs to be added to
the image tag for proper differentiation of frontend builds.
Acceptance Criteria:
Identify the necessary build arguments specific to each target deployment environment.
Modify the Docker Compose stack configuration to include an environment flag in the frontend image tags.
Implement a mechanism to ensure that the correct environment flag is applied when building and tagging frontend images.
Test the deployment process using the enhanced tagging mechanism to verify that the correct frontend build is deployed to the corresponding environment.
The text was updated successfully, but these errors were encountered:
As a deployment manager,
I want to tag the frontend images with environment-specific flags
to ensure that the correct frontend build is used for the corresponding deployment environment.
Summary:
The current deployment system utilizes Docker Compose stack to tag frontend
images based on the last commit SHA, which proves to be insufficient as frontend
images may vary based on build arguments and target deployment environments.
Therefore, to prevent using frontend images built for one environment in another
environment with different settings, an environment flag needs to be added to
the image tag for proper differentiation of frontend builds.
Acceptance Criteria:
The text was updated successfully, but these errors were encountered: