frp client component - Alpine-based Docker image
1.2K
frp (Fast Reverse Proxy) client component. Built on Alpine Linux.
docker run -d --restart=unless-stopped \
-v /path/to/frpc.toml:/etc/frpc/frpc.toml \
--name frpc \
whohoo/frpc:latest
services:
frpc:
image: whohoo/frpc:latest
container_name: frpc
restart: unless-stopped
volumes:
- ./frpc.toml:/etc/frpc/frpc.toml
network_mode: host
network_mode: hostis recommended for frpc to access local services and let frp manage port mapping at the server side.
frpc.toml)serverAddr = "your-server-ip"
serverPort = 7000
[[proxies]]
name = "test-tcp"
type = "tcp"
localIP = "127.0.0.1"
localPort = 22
remotePort = 6000
Mount your config at /etc/frpc/frpc.toml. A built-in default config exists but must be customized for your server.
See the official frp documentation for configuration reference.
Content type
Image
Digest
sha256:3828aa284…
Size
9.9 MB
Last updated
3 months ago
docker pull whohoo/frpc