Update 'README.md'
continuous-integration/drone/push Build is failing Details

This commit is contained in:
quackerd 2020-10-07 01:08:46 +00:00
parent 5888a14b37
commit 31d9edbcff
1 changed files with 49 additions and 2 deletions

View File

@ -1,7 +1,54 @@
[![Build Status](https://ci.quacker.org/api/badges/d/docker-frp/status.svg)](https://ci.quacker.org/d/docker-frp)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
# docker-frp
Docker images for frp.
Docker images for frp. Binaries directly obtained from the official frp repo [fatedier/frp](https://github.com/fatedier/frp).
Private image. Do NOT use.
The instructions below apply to `docker-compose`.
# Networking
We recommend using the `network_mode = host` (host network) option.
Otherwise you would need to manually expose the listening port as well as all the reverse proxied ports.
# Environment variables
`SERVER`. Defaults to 0 = client mode. 1 = server mode.
# Volumes
Note the difference in file names (frps.ini vs frpc.ini)
## Client mode
Client configuration file `frpc.ini` -> `/opt/frp/frpc.ini`
## Server mode
Server configuration file `frps.ini` -> `/opt/frp/frps.ini`
# docker-compose
## Sample Client
```
version: "2.1"
services:
frp:
image: quackerd/frp
container_name: frp
network_mode: host
restart: unless-stopped
volumes:
- ./config/frpc.ini:/opt/frp/frpc.ini
```
## Sample Server
```
version: "2.1"
services:
frp:
image: quackerd/frp
container_name: frp_srv
network_mode: host
restart: unless-stopped
environment:
- SERVER=1
volumes:
- ./config/frps.ini:/opt/frp/frps.ini
```