Sign inSign up

mebtte/frps

By mebtte

Updated about 1 month ago

A docker image for frps.

Image
0

1.1K

mebtte/frps repository overview

frp

A docker image for frp including frps and frpc. There is a github action to check updates and rebuild image if updates exist weekly. For more information, please see here.

Usage

You can refer on frp documentation.

frps
docker run \
  -d \
  --network host \
  --restart always \
  -v /path/frps.toml:/config/frps.toml \
  --name frps \
  mebtte/frps \
  -c /config/frps.toml

You can specify user by --user uid:gid. Also you can use docker compose like below:

services:
  frps:
    restart: always
    container_name: frps
    # user: 1000:1000
    image: mebtte/frps
    network_mode: host
    volumes:
      - /path/config.toml:/config/frps.toml:ro
    command: -c /config/frps.toml
frpc
docker run \
  -d \
  --network host \
  --restart always \
  -v /path/frpc.toml:/config/frpc.toml \
  --name frpc \
  mebtte/frpc \
  -c /config/frpc.toml

You can specity user using --user uid:gid. Also you can use docker compose like below:

services:
  frpc:
    restart: unless-stopped
    container_name: frpc
    # user: 1000:1000
    image: mebtte/frpc
    network_mode: host
    volumes:
      - /path/config.toml:/config/frpc.toml:ro
    command: -c /config/frpc.toml

Tag summary

Content type

Image

Digest

sha256:fcdf76cf0

Size

7.4 MB

Last updated

about 1 month ago

docker pull mebtte/frps