Skip to content

Commit bdf5cb8

Browse files
committed
docs: Update README with docker info.
1 parent 906cbb9 commit bdf5cb8

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,28 @@ Currently you must build it and distribute it to your server manually. The build
1212
make
1313
```
1414

15+
## Docker
16+
We have docker images available if you prefer.
17+
18+
19+
### reflect
20+
``` sh
21+
docker run --init -p 9443:443 -p 19993:9993/udp zerotier/pylon:latest \
22+
reflect
23+
```
24+
25+
See below for configuring zerotier-one to use your `reflect` as a tcp-relay.
26+
27+
### refract
28+
29+
``` sh
30+
docker run --init -e ZT_PYLON_SECRET_KEY=$(cat identity.secret) -e ZT_PYLON_WHITELISTED_PORT=4545 \
31+
--net=host --cap-add NET_ADMIN \
32+
zerotier/pylon refract 6ab565387a111111 --listen-addr 0.0.0.0 --listen-port 1080
33+
```
34+
35+
See [Usage] for more info on the commands.
36+
1537
## Usage
1638

1739
Pylon can be run as one of two personalities that can work alone or together depending on your needs:
@@ -122,3 +144,10 @@ pylon-debug
122144
## Limitations
123145

124146
While a single Pylon instance will work for multiple networks and multiple applications simultaneously it will perform better if a new instance is started for each proxied network. The underlying [libzt]() isn't multithreaded so it is recommended that you also split your proxied traffic across multiple instances if you notice performance bottlecks. Finally, Pylon only supports IPv4 TCP but IPv6 and UDP support can be added if there is sufficient interest.
147+
148+
## Releasing
149+
150+
Releasing to Docker Hub is done from our internal CI.
151+
- create a tag on `main`: `git tag v0.1.7`
152+
- push the tag: `git push --tags` This triggers the build and push to dockerhub.
153+
- create a Github Release through the Github ui. Select the tag you just pushed.

0 commit comments

Comments
 (0)