docker – Blame information for rev 62

Subversion Repositories:
Rev:
Rev Author Line No. Line
62 office 1 variable "DEFAULT_TAG" {
2 default = "rtorrent-rutorrent:local"
3 }
4  
5 // Special target: https://github.com/docker/metadata-action#bake-definition
6 target "docker-metadata-action" {
7 tags = ["${DEFAULT_TAG}"]
8 }
9  
10 // Default target if none specified
11 group "default" {
12 targets = ["image-local"]
13 }
14  
15 target "image" {
16 inherits = ["docker-metadata-action"]
17 }
18  
19 target "image-local" {
20 inherits = ["image"]
21 output = ["type=docker"]
22 }
23  
24 target "image-all" {
25 inherits = ["image"]
26 platforms = [
27 "linux/amd64",
28 "linux/arm/v6",
29 "linux/arm/v7",
30 "linux/arm64"
31 ]
32 }