diff options
Diffstat (limited to 'compose.vpn_example.yml')
| -rw-r--r-- | compose.vpn_example.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compose.vpn_example.yml b/compose.vpn_example.yml index 27cd488..a89262c 100644 --- a/compose.vpn_example.yml +++ b/compose.vpn_example.yml @@ -59,7 +59,9 @@ services: - no-new-privileges:true volumes: - ./config.json:/config.json:ro - - ./cache:/cache # ensure this dir is owned 10000:10000 + # The image runs as uid 10000, so the host cache dir must be writable by it: + # mkdir -p cache && sudo chown -R 10000:10000 cache + - ./cache:/cache environment: # Empty by default = direct. Set SKUNKY_PROXY in .env to route via the VPN. - HTTPS_PROXY=${SKUNKY_PROXY:-} |
