From ee6af4dd3f85bc3e7bc5bb4cc028db93aa8bdf4d Mon Sep 17 00:00:00 2001 From: Vladislav Yarmak Date: Wed, 20 May 2020 02:01:04 +0300 Subject: [PATCH] doc: add docker and snap install methods --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 2dd1ce3..26ee7b9 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,27 @@ Alternatively, you may install dumbproxy from source. Run within source director go install ``` +#### Docker + +Docker image is available as well. Here is an example for running proxy as a background service: + +```sh +docker run -d \ + --security-opt no-new-privileges \ + -p 8080:8080 \ + --restart unless-stopped \ + --name dumbproxy \ + yarmak/dumbproxy +``` + +#### Snap Store + +[![Get it from the Snap Store](https://snapcraft.io/static/images/badges/en/snap-store-black.svg)](https://snapcraft.io/dumbproxy) + +```bash +sudo snap install dumbproxy +``` + ## Usage Just run program and it'll start accepting connections on port 8080 (default).