1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00
This commit is contained in:
kev 2015-04-30 19:46:33 +08:00
parent 6c0d321083
commit 7b873db885

@ -45,7 +45,7 @@ obfsproxy:
To link a existing `openvpn` container, please use `external_links` instead of `links`. To link a existing `openvpn` container, please use `external_links` instead of `links`.
```yaml ```
obfsproxy: obfsproxy:
image: vimagick/obfsproxy:latest image: vimagick/obfsproxy:latest
ports: ports:
@ -64,6 +64,6 @@ obfsproxy:
The password should be encoded by Base32 with fixed length. The password should be encoded by Base32 with fixed length.
You can generate one via this command: You can generate one via this command:
```bash ```
python -c 'import base64, os; print base64.b32encode(os.urandom(20))' python -c 'import base64, os; print base64.b32encode(os.urandom(20))'
``` ```