Skip to content

Commit

Permalink
serve/docker: allow to customize proxy settings of docker plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ivandeex committed Oct 3, 2021
1 parent a065fb2 commit 8fb0ff6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
15 changes: 15 additions & 0 deletions cmd/serve/docker/contrib/plugin/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@
"settable": ["value"]
},
"env": [
{
"name": "HTTP_PROXY",
"value": "",
"settable": ["value"]
},
{
"name": "HTTPS_PROXY",
"value": "",
"settable": ["value"]
},
{
"name": "NO_PROXY",
"value": "",
"settable": ["value"]
},
{
"name": "RCLONE_VERBOSE",
"value": "0",
Expand Down
7 changes: 6 additions & 1 deletion docs/content/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,8 @@ swarm services that use them. This is rather tedious so please carefully
plan in advance.

You can tweak the following settings:
`args`, `config`, `cache`, and `RCLONE_VERBOSE`.
`args`, `config`, `cache`, `HTTP_PROXY`, `HTTPS_PROXY`, `NO_PROXY`
and `RCLONE_VERBOSE`.
It's _your_ task to keep plugin settings in sync across swarm cluster nodes.

`args` sets command-line arguments for the `rclone serve docker` command
Expand Down Expand Up @@ -387,6 +388,8 @@ The plugin output by default feeds the docker daemon log on local host.
Log entries are reflected as _errors_ in the docker log but retain their
actual level assigned by rclone in the encapsulated message string.

`HTTP_PROXY`, `HTTPS_PROXY`, `NO_PROXY` customize the plugin proxy settings.

You can set custom plugin options right when you install it, _in one go_:
```
docker plugin remove rclone
Expand Down Expand Up @@ -504,6 +507,8 @@ sudo curl -H Content-Type:application/json -XPOST -d {} --unix-socket /run/docke
```
though this is rarely needed.

## Caveats

Finally I'd like to mention a _caveat with updating volume settings_.
Docker CLI does not have a dedicated command like `docker volume update`.
It may be tempting to invoke `docker volume create` with updated options
Expand Down

0 comments on commit 8fb0ff6

Please sign in to comment.