Sign inSign up

wnwd/frps

By wnwd

Updated about 1 month ago

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

Image
1

6.5K

wnwd/frps repository overview

frps

frps

Unofficial docker image packaging for Frps.

Supported architecture:

  • amd64
  • arm32v6
  • arm32v7
  • arm64v8

Usage

Direct run:

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

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

Notice:

Environment variable 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:d6167e454

Size

11 MB

Last updated

about 1 month ago

docker pull wnwd/frps