mac下开启docker API远程调用

Socat 安装

  • 经过源码方式安装
1
2
3
4
5
6
$ wget http://www.dest-unreach.org/socat/download/socat-1.7.3.2.tar.gz
$ tar zxf socat-1.7.3.2.tar.gz
$ cd socat-1.7.3.2
$ ./configure 
$ make   
$ make install
  • 经过包安装 (推荐)

Centosdocker

1
$ yum install -y socat

Debian/Ubuntuspa

1
$ apt-get install -y socat

macOSget

1
$ brew install socat

Socat 基本语法

1
socat [options] <address> <address>

 

```源码

docker run -d -v /var/run/docker.sock:/var/run/docker.sock -p 2376:2375 \io

bobrik/socat TCP4-LISTEN:2375,fork,reuseaddr UNIX-CONNECT:/var/run/docker.socktable

```语法

相关文章
相关标签/搜索