Updated Readme to include psiphon version

This commit is contained in:
Swarup Sengupta
2022-06-15 11:15:33 +05:30
parent 51f6f97d08
commit ec684107f8
+9 -1
View File
@@ -28,9 +28,17 @@ sudo docker buildx create --name cross-platform --platform ${TARGETS} --use
sudo docker buildx build -t <your_username>/<your_tag> . --load
# Build for multi-arch and push to registry
sudo docker build --build-arg TARGETS=${TARGETS} -t <your_username>/<your_tag> \
sudo docker buildx build --build-arg TARGETS=${TARGETS} -t <your_username>/<your_tag> \
--platform ${TARGETS} . --push
```
> To change the version of the psiphon add --build-arg VERSION=<version_no><br>
e.g.
```
# to build v2.0.22
sudo docker buildx build --build-arg VERSION=2.0.22 -t <your_username>/<your_tag> . --load
```
***
## To run using docker-compose (recommended): <br>