- centos7 docker 镜像
docker pull centos:7
- yum 安装chrome
参考地址:
https://www.jianshu.com/p/736b069bc6e7
- 运行chrome
google-chrome --remote-debugging-port=9222 --headless --no-sandbox
后台运行:
nohup google-chrome --remote-debugging-port=9222 --headless --no-sandbox &
在图像界面运行:
DISPLAY=:3 nohup google-chrome --no-sandbox --remote-debugging-port=9222 &
- 局域网访问配置
yum install socat
socat tcp-listen:80,fork tcp:localhost:9222
- 启动docker<