mirror of
https://github.com/ilyakooo0/sc-build.git
synced 2024-11-24 05:07:19 +03:00
18 lines
417 B
Markdown
18 lines
417 B
Markdown
|
# sc-build
|
||
|
|
||
|
Need both manual weebohook and app.
|
||
|
|
||
|
Installation id needs to be configured manually.
|
||
|
|
||
|
For macos docker API:
|
||
|
|
||
|
```bash
|
||
|
socat TCP-LISTEN:1234,range=127.0.0.1/32,reuseaddr,fork UNIX-CLIENT:/var/run/docker.sock
|
||
|
```
|
||
|
|
||
|
or this (didn't work for me):
|
||
|
|
||
|
```bash
|
||
|
docker run -d -v /var/run/docker.sock:/var/run/docker.sock -p 127.0.0.1:2357:1234 bobrik/socat TCP-LISTEN:1234,fork UNIX-CONNECT:/var/run/docker.sock
|
||
|
```
|