This commit is contained in:
Tobias Reisinger 2023-08-08 19:29:03 +02:00
commit 39073d8f3a
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
15 changed files with 297 additions and 0 deletions

22
snapcast/docker-bake.hcl Normal file
View 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"
}
}