Last active
October 9, 2019 15:59
-
-
Save happyincent/78a0fc3332eca10c7e02b9bdd105a744 to your computer and use it in GitHub Desktop.
A bake definition file example. https://github.com/docker/buildx
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
group "default" { | |
targets = ["autossh", "ffmpeg", "edge"] | |
} | |
target "autossh" { | |
context = "./autossh" | |
dockerfile = "Dockerfile" | |
platforms = [ | |
"linux/amd64", | |
"linux/arm64", | |
"linux/arm/v7" | |
] | |
tags = ["itlabstar/autossh:ddl"] | |
output = ["type=registry"] | |
} | |
target "ffmpeg" { | |
context = "./ffmpeg" | |
dockerfile = "Dockerfile" | |
platforms = [ | |
"linux/amd64", | |
"linux/arm64", | |
"linux/arm/v7" | |
] | |
tags = ["itlabstar/ffmpeg:ddl"] | |
output = ["type=registry"] | |
} | |
target "edge" { | |
context = "./edge" | |
dockerfile = "Dockerfile" | |
platforms = [ | |
"linux/amd64", | |
"linux/arm64", | |
"linux/arm/v7" | |
] | |
tags = ["itlabstar/edge:ddl"] | |
output = ["type=registry"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Environment