We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--network host
所以我们无法在和宿主机器网络互通 要手动打开端口
services: frpc: image: snowdreamtech/frpc:0.59 container_name: frpc restart: always # network_mode: host #不支持 ports: - "8080: 8080" volumes: - /path/to/frpc.toml:/etc/frp/frpc.toml
2.ssh服务22端口被占用 我们使用host.docker.internal来访问宿主机器 注意web地址服务要设置为0.0.0.0来接受所有地址的请求
webServer.addr = "0.0.0.0" webServer.port = 8080 webServer.user = "" webServer.password = "" [[proxies]] name = "ssh" type = "tcp" localIP = "host.docker.internal" localPort = 22 remotePort = 7000
No response
The text was updated successfully, but these errors were encountered:
不推荐这样使用,在mac中使用 frpc 请使用 brew ,这个是原生直接运行的,没必要用docker走一层虚拟机。
mac
brew install frpc
Sorry, something went wrong.
不推荐这样使用,在mac中使用 frpc 请使用 brew ,这个是原生直接运行的,没必要用docker走一层虚拟机。 brew install frpc
确实是使用brew 方便一点,还可以使用 brew services 来守护进程
brew
brew services
No branches or pull requests
Describe the feature request
Mac 客户端开启frpc注意事项
https://gofrp.org/zh-cn/docs/examples/ssh
Mac使用docker安装客户端注意
所以我们无法在和宿主机器网络互通
要手动打开端口
2.ssh服务22端口被占用 我们使用host.docker.internal来访问宿主机器
注意web地址服务要设置为0.0.0.0来接受所有地址的请求
Describe alternatives you've considered
No response
Affected area
The text was updated successfully, but these errors were encountered: