Unofficial docker image for Frps. 100% open source and build from official repository.
6.5K
Unofficial docker image packaging for Frps.
Supported architecture:
start frps
docker run -d \
--name frps \
--network host \
--restart=always \
-e CONF_TYPE=yml \
-v ./conf:/etc/frp \
wnwd/frps:latest
# modify your config file (located ./conf/frpc.yml / json / toml)
docker restart frps
frps:
# docker-compose.yml
version: '3'
services:
Frp:
image: 'wnwd/frps:latest'
container_name: frps
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 frps
Environment variable 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:d6167e454…
Size
11 MB
Last updated
about 1 month ago
docker pull wnwd/frps