feat: add Docker Hub image script
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
$ErrorActionPreference = "Stop"
|
||||
|
||||
if (-not $env:IMAGE_TAG) {
|
||||
throw "Set IMAGE_TAG to the release tag you want to build and push"
|
||||
}
|
||||
|
||||
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
|
||||
$env:IMAGE_REGISTRY = "docker.io"
|
||||
$env:IMAGE_NAMESPACE = "3252a8"
|
||||
|
||||
& (Join-Path $scriptDir "docker-build-images.ps1")
|
||||
& (Join-Path $scriptDir "docker-push-images.ps1")
|
||||
Reference in New Issue
Block a user