Sign inSign up

wnwd/frpc

By wnwd

Updated about 1 month ago

Unofficial docker image for Frpc. 100% open source and build from official repository.

Image
2

10K+

wnwd/frpc repository overview

frpc

frpc

Unofficial docker image packaging for Frpc.

Supported architecture:

  • amd64
  • arm32v6
  • arm32v7
  • arm64v8

Usage

Direct run:

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
Docker compose:

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

Notice:

-e CONF_TYPE was optional, valid values include yml, json and toml, the defaule value was yml.

Quick reference

Website

  1. fatedier/frp

License

Apache 2.0

Tag summary

Content type

Image

Digest

sha256:fe841b89a

Size

9.8 MB

Last updated

about 1 month ago

docker pull wnwd/frpc