update docs and change make docker build to plain progress

This commit is contained in:
Umputun
2021-05-28 16:28:33 -05:00
parent 81e8f4a029
commit a4b09e6697
2 changed files with 4 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ docker:
dist:
- @mkdir -p dist
docker build -f Dockerfile.artifacts -t reproxy.bin .
docker build -f Dockerfile.artifacts --progress=plain -t reproxy.bin .
- @docker rm -f reproxy.bin 2>/dev/null || exit 0
docker run -d --name=reproxy.bin reproxy.bin
docker cp reproxy.bin:/artifacts dist/
@@ -22,7 +22,7 @@ build: info
site:
@rm -f site/public/*
docker build -f Dockerfile.site -t reproxy.site .
docker build -f Dockerfile.site --progress=plain -t reproxy.site .
docker run -d --name=reproxy.site reproxy.site
docker cp reproxy.site:/build/public site/
docker rm -f reproxy.site

View File

@@ -36,6 +36,8 @@ Examples:
## Install
Reproxy distributed as a small self-contained binary as well as a docker image. Both binary and image support multiple architectures and multiple operating systems, including linux_x86_64, linux_arm64, linux_arm, macos_x86_64, macos_arm64, windows_x86_64 and windows_arm. We also provide both arm64 and x86 deb and rpm packages.
- for a binary distribution download the proper file in the [release section](https://github.com/umputun/reproxy/releases)
- docker container available on [Docker Hub](https://hub.docker.com/r/umputun/reproxy) as well as on [Github Container Registry](https://github.com/users/umputun/packages/container/reproxy/versions). I.e. `docker pull umputun/reproxy` or `docker pull ghcr.io/umputun/reproxy`.