mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-12-16 02:46:45 +00:00
add git-cli
This commit is contained in:
31
frp/latest/README.md
Normal file
31
frp/latest/README.md
Normal file
@@ -0,0 +1,31 @@
|
||||
# Deploy frps / frpc with docker
|
||||
|
||||
## Start frps
|
||||
|
||||
```bash
|
||||
docker service create \
|
||||
--name frps \
|
||||
--hostname frps \
|
||||
--network swarm-net \
|
||||
--replicas 1 \
|
||||
--detach=true \
|
||||
--publish 7500:7500 \
|
||||
--publish 7000:7000 \
|
||||
--mount type=bind,source=/etc/localtime,target=/etc/localtime \
|
||||
--mount type=bind,source=/data/frp/frps.ini,target=/frp/frps.ini \
|
||||
newnius/frp:v0.21.0
|
||||
```
|
||||
|
||||
## Start frpc
|
||||
|
||||
```bash
|
||||
docker service create \
|
||||
--name frpc \
|
||||
--hostname frpc \
|
||||
--network swarm-net \
|
||||
--replicas 1 \
|
||||
--detach=true \
|
||||
--mount type=bind,source=/etc/localtime,target=/etc/localtime \
|
||||
--mount type=bind,source=/data/frp/frpc.ini,target=/frp/frpc.ini \
|
||||
newnius/frp:v0.21.0
|
||||
```
|
||||
Reference in New Issue
Block a user