Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmorbo committed Sep 19, 2022
1 parent b4ac874 commit 89f33b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 18 deletions.
2 changes: 1 addition & 1 deletion domru/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## 0.1.6
- Обновлены пакеты guzzlehttp/guzzle и guzzlehttp/psr7
- Обновлен пакет react/http
- Fix #15 Некоррректный порт в ссылках на видеолпоток
- Fix #15 Некоррректный порт в ссылках на видеолпоток !! Необходимо обновить порт в настройках интеграции с Home Assistant
- Fix #26 После ввода телефона ничего не происходит

## 0.1.5
Expand Down
21 changes: 4 additions & 17 deletions domru/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,7 @@ VERSION=`cat config.json | jq -r '.version'`

echo "Running build for $VERSION"

# build
docker build -t alexmorbo/domru-amd64:latest -t alexmorbo/domru-amd64:$VERSION -f Dockerfile.amd64 .
# push
docker push alexmorbo/domru-amd64:latest
docker push alexmorbo/domru-amd64:$VERSION

docker build -t alexmorbo/domru-armv7:latest -t alexmorbo/domru-armv7:$VERSION -f Dockerfile.armv7 .
docker push alexmorbo/domru-armv7:latest
docker push alexmorbo/domru-armv7:$VERSION

docker build -t alexmorbo/domru-aarch64:latest -t alexmorbo/domru-aarch64:$VERSION -f Dockerfile.aarch64 .
docker push alexmorbo/domru-aarch64:latest
docker push alexmorbo/domru-aarch64:$VERSION

docker build -t alexmorbo/domru-i386:latest -t alexmorbo/domru-i386:$VERSION -f Dockerfile.i386 .
docker push alexmorbo/domru-i386:latest
docker push alexmorbo/domru-i386:$VERSION
docker buildx build --progress=plain --pull --push -t alexmorbo/domru-amd64:latest -t alexmorbo/domru-amd64:$VERSION -f Dockerfile.amd64 .
docker buildx build --progress=plain --pull --push -t alexmorbo/domru-armv7:latest -t alexmorbo/domru-armv7:$VERSION -f Dockerfile.armv7 .
docker buildx build --progress=plain --pull --push -t alexmorbo/domru-aarch64:latest -t alexmorbo/domru-aarch64:$VERSION -f Dockerfile.aarch64 .
docker buildx build --progress=plain --pull --push -t alexmorbo/domru-i386:latest -t alexmorbo/domru-i386:$VERSION -f Dockerfile.i386 .

0 comments on commit 89f33b3

Please sign in to comment.