Browse Source
Merge pull request #76 from Kukks/bugfix/local-generator
fix local generator
feature/auto_ssh
Nicolas Dorier
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
build.ps1
-
build.sh
|
|
@ -3,7 +3,7 @@ |
|
|
|
If (-not ($BTCPAYGEN_DOCKER_IMAGE)) { $BTCPAYGEN_DOCKER_IMAGE = "btcpayserver/docker-compose-generator" } |
|
|
|
|
|
|
|
If ($BTCPAYGEN_DOCKER_IMAGE -eq "btcpayserver/docker-compose-generator:local"){ |
|
|
|
docker build docker-compose-generator --tag $BTCPAYGEN_DOCKER_IMAGE |
|
|
|
docker build docker-compose-generator -f docker-compose-generator/linuxamd64.Dockerfile --tag $BTCPAYGEN_DOCKER_IMAGE |
|
|
|
} Else { |
|
|
|
docker pull $BTCPAYGEN_DOCKER_IMAGE |
|
|
|
} |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
: "${BTCPAYGEN_DOCKER_IMAGE:=btcpayserver/docker-compose-generator}" |
|
|
|
if [ "$BTCPAYGEN_DOCKER_IMAGE" == "btcpayserver/docker-compose-generator:local" ] |
|
|
|
then |
|
|
|
docker build docker-compose-generator --tag $BTCPAYGEN_DOCKER_IMAGE |
|
|
|
docker build docker-compose-generator -f docker-compose-generator/linuxamd64.Dockerfile --tag $BTCPAYGEN_DOCKER_IMAGE |
|
|
|
else |
|
|
|
docker pull $BTCPAYGEN_DOCKER_IMAGE |
|
|
|
fi |
|
|
|