Golden Codes - armanexplorer planet

Practical code snippets for Django, Python, Bash, Git and All!

View on GitHub

Docs

random example

# docker-bake.hcl
group "my-app" {
  targets = ["common", "api", "worker"]

  common = {
    context = "."
    dockerfile = "common.Dockerfile"
  }

  api = {
    inherits = ["common"]
    args = {
      SERVICE_NAME = "api"
    }
  }

  worker = {
    inherits = ["common"]
    args = {
      SERVICE_NAME = "worker"
    }
  }
}