Created
April 23, 2022 09:05
-
-
Save Havoc24k/12120978085938d494780f2eac50c7d4 to your computer and use it in GitHub Desktop.
waypoint.hcl build block
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
build { | |
use "pack" {} | |
registry { | |
use "docker" { | |
image = var.REGISTRY_URL | |
tag = "latest" | |
// Set to `true` if you don't want the image to be pushed to your container registry | |
local = false | |
// Required for private container registry | |
// encoded_auth = filebase64("${path.pwd}/auth.json") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment