frp
frp copied to clipboard
Docker Images for Frp. (amd64, arm32v6, arm32v7, arm64v8, i386)
云服务器上的设置 # frps.ini [common] bind_port = 7000 vhost_http_port = 8080 本地web1 # frpc.ini [common] server_addr = x.x.x.x server_port = 7000 [web] type = http local_port = 80 custom_domains = 23.23.23.23...
启动容器就退出
启动容器时没有连上上frps就会退出容器吗?
按照现在的写法 ```dockerfile ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.toml ``` 在k8s中覆盖参数的话, 需要一同覆盖程序位置: ```yaml containers: - command: - /usr/bin/frpc - '-c' - /etc/frp/frpc.yml ``` 这样需要确定frpc的位置, 日后如果frpc位置更改就会破坏容器配置. 如果使用CMD来传递参数: ```dockerfile ENTRYPOINT /usr/bin/frpc CMD -c /etc/frp/frpc.toml ```...
Currently the container image is assuming that the container is started as root user. Running the image with the `--user uid:gid` option crashes the container with the message: su-exec: setgroups(0):...