20 lines
813 B
Plaintext
20 lines
813 B
Plaintext
# Master-side frps container launch equivalent.
|
|
# The actual running container is `hwlab-frps-dev` (fatedier/frps:v0.68.1)
|
|
# started by the existing flow with restart policy `unless-stopped`.
|
|
# It bind-mounts /opt/hwlab-frp/frps.dev.toml -> /etc/frp/frps.toml (ro).
|
|
# To recreate from scratch:
|
|
#
|
|
# mkdir -p /opt/hwlab-frp
|
|
# cp deploy/master/frp/frps.dev.toml /opt/hwlab-frp/
|
|
# docker run -d --name hwlab-frps-dev --restart unless-stopped \
|
|
# -v /opt/hwlab-frp/frps.dev.toml:/etc/frp/frps.toml:ro \
|
|
# -p 7000:7000 \
|
|
# -p 16666:16666 -p 16667:16667 \
|
|
# -p 17666:17666 -p 17667:17667 \
|
|
# -p 18666:18666 -p 18667:18667 \
|
|
# -p 19666:19666 -p 19667:19667 \
|
|
# -p 20666:20666 -p 20667:20667 \
|
|
# -p 7402:7402 \
|
|
# -p 28443:28443 \
|
|
# fatedier/frps:v0.68.1 -c /etc/frp/frps.toml
|