From ab3eec53d9e6ed14bad62f26bb44deb1e23f6c7f Mon Sep 17 00:00:00 2001 From: Noah Williams Date: Sat, 13 Mar 2021 12:35:36 -0900 Subject: [PATCH] Add authfile --- example/reverse-tunneling-authenticated.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/example/reverse-tunneling-authenticated.md b/example/reverse-tunneling-authenticated.md index 206b693..8236abb 100644 --- a/example/reverse-tunneling-authenticated.md +++ b/example/reverse-tunneling-authenticated.md @@ -77,4 +77,12 @@ services: - './users.json:/users.json' # ⬇️ Give the container unrestricted access to the docker host's network network_mode: host -``` \ No newline at end of file +``` + +The `authfile` (`users.json`) remains the same as in the non-containerized version - shown again with the username `foo` and password `bar`. + +```json +{ + "foo:bar": ["0.0.0.0:80"] +} +```