https://github.com/rycus86/docker-socat
Multi-arch Alpine-based image to proxy TCP requests to the Docker unix socket
https://github.com/rycus86/docker-socat
Last synced: 3 months ago
JSON representation
Multi-arch Alpine-based image to proxy TCP requests to the Docker unix socket
- Host: GitHub
- URL: https://github.com/rycus86/docker-socat
- Owner: rycus86
- License: mit
- Created: 2018-06-19T22:42:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-19T22:46:39.000Z (almost 8 years ago)
- Last Synced: 2025-01-23T18:16:09.860Z (over 1 year ago)
- Size: 1.95 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# socat
[](https://travis-ci.org/rycus86/docker-socat)
This project builds Docker images with socat installed, and configured to pipe incoming connections on TCP port `2375` to the Docker engine UNIX socket at `/var/run/docker.sock`. This allows connecting to remote Docker engines like this:
```shell
$ docker -H tcp://remote:2375 ps
```
## Tags
- `latest`: the default
- `armhf`: to use on `armhf` hosts (like the Raspberry Pi)
- `aarch64`: to use on `aarch64` (or `arm64v8`) hosts (like the Pine 64)
## Usage
`docker run -d --restart always -v /var/run/docker.sock:/var/run/docker.sock -p 2375:2375 --name socat rycus86/docker-socat`
## Docker Hub
This image is available on [Docker Hub](https://hub.docker.com/r/rycus86/docker-socat/)
## Credits
Based on [docksal/service-socat](https://github.com/docksal/service-socat)
## License
MIT