Skip to content

Commit

Permalink
Fix container path.
Browse files Browse the repository at this point in the history
  • Loading branch information
willson556 committed Feb 13, 2024
1 parent 5896f16 commit 25cde6e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions docker-bake-release.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ variable "RELEASE_VERSION" {
}

target "kroki" {
tags = ["staflsystems/kroki:${RELEASE_VERSION}", "staflsystems/kroki:latest"]
tags = ["ghcr.io/staflsystems/kroki:${RELEASE_VERSION}", "ghcr.io/staflsystems/kroki:latest"]
}

target "kroki-mermaid" {
tags = ["staflsystems/kroki-mermaid:${RELEASE_VERSION}", "staflsystems/kroki-mermaid:latest"]
tags = ["ghcr.io/staflsystems/kroki-mermaid:${RELEASE_VERSION}", "ghcr.io/staflsystems/kroki-mermaid:latest"]
}

target "kroki-bpmn" {
tags = ["staflsystems/kroki-bpmn:${RELEASE_VERSION}", "staflsystems/kroki-bpmn:latest"]
tags = ["ghcr.io/staflsystems/kroki-bpmn:${RELEASE_VERSION}", "ghcr.io/staflsystems/kroki-bpmn:latest"]
}

target "kroki-excalidraw" {
tags = ["staflsystems/kroki-excalidraw:${RELEASE_VERSION}", "staflsystems/kroki-excalidraw:latest"]
tags = ["ghcr.io/staflsystems/kroki-excalidraw:${RELEASE_VERSION}", "ghcr.io/staflsystems/kroki-excalidraw:latest"]
}

target "kroki-diagramsnet" {
tags = ["staflsystems/kroki-diagramsnet:${RELEASE_VERSION}", "staflsystems/kroki-diagramsnet:latest"]
tags = ["ghcr.io/staflsystems/kroki-diagramsnet:${RELEASE_VERSION}", "ghcr.io/staflsystems/kroki-diagramsnet:latest"]
}
12 changes: 6 additions & 6 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ target "oci-labels" {
labels = {
"org.opencontainers.image.description" = "Kroki provides a unified API supporting multiple diagramming formats, making it easy to create diagrams from textual descriptions."
"org.opencontainers.image.url" = "https://kroki.io"
"org.opencontainers.image.source" = "https://github.com/staflsystems/kroki"
"org.opencontainers.image.source" = "https://github.com/ghcr.io/staflsystems/kroki"
"org.opencontainers.image.licenses" = "MIT"
}
}
Expand All @@ -26,7 +26,7 @@ target "kroki" {
tikz = "./tikz"
}
dockerfile = "ops/docker/jdk17-jammy/Dockerfile"
tags = ["staflsystems/kroki:${TAG}"]
tags = ["ghcr.io/staflsystems/kroki:${TAG}"]
inherits = ["oci-labels"]
labels = {
"org.opencontainers.image.title" = "Kroki"
Expand All @@ -35,7 +35,7 @@ target "kroki" {

target "kroki-mermaid" {
context = "mermaid"
tags = ["staflsystems/kroki-mermaid:${TAG}"]
tags = ["ghcr.io/staflsystems/kroki-mermaid:${TAG}"]
inherits = ["oci-labels"]
labels = {
"org.opencontainers.image.title" = "Kroki - Mermaid"
Expand All @@ -44,7 +44,7 @@ target "kroki-mermaid" {

target "kroki-bpmn" {
context = "bpmn"
tags = ["staflsystems/kroki-bpmn:${TAG}"]
tags = ["ghcr.io/staflsystems/kroki-bpmn:${TAG}"]
inherits = ["oci-labels"]
labels = {
"org.opencontainers.image.title" = "Kroki - BPMN"
Expand All @@ -53,7 +53,7 @@ target "kroki-bpmn" {

target "kroki-excalidraw" {
context = "excalidraw"
tags = ["staflsystems/kroki-excalidraw:${TAG}"]
tags = ["ghcr.io/staflsystems/kroki-excalidraw:${TAG}"]
inherits = ["oci-labels"]
labels = {
"org.opencontainers.image.title" = "Kroki - Excalidraw"
Expand All @@ -62,7 +62,7 @@ target "kroki-excalidraw" {

target "kroki-diagramsnet" {
context = "diagrams.net"
tags = ["staflsystems/kroki-diagramsnet:${TAG}"]
tags = ["ghcr.io/staflsystems/kroki-diagramsnet:${TAG}"]
inherits = ["oci-labels"]
labels = {
"org.opencontainers.image.title" = "Kroki - diagrams.net"
Expand Down

0 comments on commit 25cde6e

Please sign in to comment.