Init
This commit is contained in:
commit
39073d8f3a
15 changed files with 297 additions and 0 deletions
22
snapcast/docker-bake.hcl
Normal file
22
snapcast/docker-bake.hcl
Normal file
|
@ -0,0 +1,22 @@
|
|||
variable "REG" {
|
||||
default = "registry.serguzim.me"
|
||||
}
|
||||
variable "REPO" {
|
||||
default = "smarthome/audio"
|
||||
}
|
||||
variable "TAG" {
|
||||
default = "latest"
|
||||
}
|
||||
|
||||
group "default" {
|
||||
targets = ["production"]
|
||||
}
|
||||
|
||||
target "production" {
|
||||
dockerfile = "./Dockerfile"
|
||||
output = ["type=docker"]
|
||||
tags = ["${REG}/${REPO}:latest", "${REG}/${REPO}:${TAG}"]
|
||||
args = {
|
||||
BUILD_FROM = "ghcr.io/home-assistant/amd64-base"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue