From a4b09e6697d046a6ecd49ac5bed74df164109207 Mon Sep 17 00:00:00 2001 From: Umputun Date: Fri, 28 May 2021 16:28:33 -0500 Subject: [PATCH] update docs and change make docker build to plain progress --- Makefile | 4 ++-- README.md | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f648af3..3b2947c 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/README.md b/README.md index db65028..8c7ca2b 100644 --- a/README.md +++ b/README.md @@ -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`.