gists/frp

By gists

Updated 2 months ago

[unofficial] based on apline and building from source code.

Image

100K+

Dockerfile https://github.com/vgist/dockerfiles/tree/master/frp

Creating an instance:

docker run \
    -d \
    --name frp \
    -p 7000:7000 \
    -v $(pwd)/frps.ini:/etc/frps.ini \
    gists/frp

Compose example:

frp:
    image: gists/frp
    ports:
        - "7000:7000"
    volumes:
        - ./frpc.ini:/etc/frpc.ini
    command: frpc -c /etc/frpc.ini
  restart: always

Read More

https://github.com/fatedier/frp

Docker Pull Command

docker pull gists/frp