Sign inSign up

whohoo/frps

By whohoo

Updated 3 months ago

frp server component - Alpine-based Docker image

Image
0

1.1K

whohoo/frps repository overview

whohoo/frps

frp (Fast Reverse Proxy) server component. Built on Alpine Linux.

Usage

docker run
docker run -d --restart=unless-stopped \
  -p 7000:7000 -p 7500:7500 \
  --name frps \
  whohoo/frps:latest

Custom config:

docker run -d --restart=unless-stopped \
  -p 7000:7000 -p 7500:7500 \
  -v /path/to/frps.toml:/etc/frps/frps.toml \
  --name frps \
  whohoo/frps:latest
docker-compose
services:
  frps:
    image: whohoo/frps:latest
    container_name: frps
    restart: unless-stopped
    ports:
      - "7000:7000"
      - "7500:7500"
    volumes:
      - ./frps.toml:/etc/frps/frps.toml

Ports

PortPurpose
7000frp bind port
7500Dashboard

Configuration

Default config is bundled. Mount your own at /etc/frps/frps.toml to override.

See the official frp documentation for configuration reference.

Source

https://github.com/whohoo/frp-docker

Tag summary

Content type

Image

Digest

sha256:d472274e9

Size

11.2 MB

Last updated

3 months ago

docker pull whohoo/frps