Unofficial docker image for Frpc. 100% open source and build from official repository.
10K+
Unofficial docker image packaging for Frpc.
Supported architecture:
start frpc
docker run -d \
--name frpc \
--network host \
--restart=always \
-e CONF_TYPE=yml \
-v ./conf:/etc/frp \
wnwd/frpc:latest
# modify your config file (located ./conf/frpc.yml / json / toml)
docker restart frpc
frpc:
# docker-compose.yml
version: '3'
services:
Frp:
image: 'wnwd/frpc:latest'
container_name: frpc
restart: unless-stopped
environment:
CONF_TYPE: 'yml'
# CONF_TYPE: 'toml'
# CONF_TYPE: 'json'
volumes:
- ./conf:/etc/frp
network_mode: 'host'
docker compose up -d
# modify your config file
docker restart frpc
-e CONF_TYPE was optional, valid values include yml, json and toml, the defaule value was yml.
Where to file issues:https://github.com/wnwd/frp/issues
Maintained by:mapxn https://github.com/mapxn
Apache 2.0
Content type
Image
Digest
sha256:fe841b89a…
Size
9.8 MB
Last updated
about 1 month ago
docker pull wnwd/frpc