18 lines
421 B
YAML
18 lines
421 B
YAML
version: "3.9"
|
||
|
||
services:
|
||
frps:
|
||
image: snowdreamtech/frps:latest
|
||
container_name: frps
|
||
restart: unless-stopped
|
||
ports:
|
||
- "80:80" # HTTP → 轉給內網 NPM
|
||
- "443:443" # HTTPS → 轉給內網 NPM
|
||
- "7000:7000" # frpc 控制通道(建議用防火牆限制來源 IP)
|
||
volumes:
|
||
- /opt/frp/frps.toml:/etc/frp/frps.toml:ro
|
||
|
||
networks:
|
||
default:
|
||
driver: bridge
|