Add workaround for (DE) titles
This commit is contained in:
18
build_and_push_docker_image.bat
Normal file
18
build_and_push_docker_image.bat
Normal file
@@ -0,0 +1,18 @@
|
||||
@echo off
|
||||
SET IMAGE_NAME=pcjones/umlautadaptarr
|
||||
|
||||
echo Enter the version number for the Docker image:
|
||||
set /p VERSION="Version: "
|
||||
|
||||
echo Building Docker image with version %VERSION%...
|
||||
docker build -t %IMAGE_NAME%:%VERSION% .
|
||||
docker tag %IMAGE_NAME%:%VERSION% %IMAGE_NAME%:latest
|
||||
|
||||
echo Pushing Docker image with version %VERSION%...
|
||||
docker push %IMAGE_NAME%:%VERSION%
|
||||
|
||||
echo Pushing Docker image with tag latest...
|
||||
docker push %IMAGE_NAME%:latest
|
||||
|
||||
echo Done.
|
||||
pause
|
||||
Reference in New Issue
Block a user