Skip to content
Discussion options

You must be logged in to vote

The AWS Sample App image is pulled directly out of dockerhub. You can see that by checking out the _envcommon/services/k8s-sample-app-frontend.hcl file (your file name will be different if you're using ECS):

...
container_image = {
    repository  = "gruntwork/aws-sample-app"
    pull_policy = "IfNotPresent"
}
...

The tag is set per environment in stage/us-east-1/stage/services/sample-app-frontend/terragrunt.hcl:

...
inputs = {
  # Configure the specific image tag to use when deploying this app. The other configurations are inherited from the
  # parent envcommon configuration.
  container_image = {
    tag = "v0.0.2"
...

Note that even though the latest tagged image in dockerhub is v0…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by pete0emerson
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment