mirror of
https://gitee.com/kennylee/docker.git
synced 2024-11-30 02:48:27 +08:00
18 lines
399 B
YAML
18 lines
399 B
YAML
version: '2'
|
|
services:
|
|
app:
|
|
image: registry.cn-hangzhou.aliyuncs.com/kennylee/frp
|
|
container_name: frps
|
|
ports:
|
|
- "7000:7000"
|
|
- "7500:7500"
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./frps.ini:/data/frp/frps.ini:z
|
|
restart: always
|
|
entrypoint:
|
|
- ./frp/frps
|
|
- -c
|
|
- /data/frp/frps.ini
|
|
|