开启CFWarp后对docker bridge网络的影响

date
Apr 29, 2022
slug
tip-cfwarp-docker
status
Published
summary
小技巧
tags
tip
type
Post
URL

Problem & Summary

发现v2ray docker 无法使用了

notion image

Soltion

修改service port到一个可用端口(比如有些nat限定了必须用指定端口)

notion image

docker使用-net=host方式;此模式下-p将不再有任何意义;host所有端口暴露给docker

如果docker自用端口不可改(比如telegrammessenger/proxy docker只能用443),那就用socat进行本地转发

docker run -d \
  --net=host -p 11297:443 \
  --name=mtproto --restart=always -v $(pwd):/data \
  telegrammessenger/proxy
notion image

Screenshots

 

© Ying Bun 2021 - 2024