All Questions
Tagged with unix-socket docker
40 questions
0
votes
0
answers
33
views
Docker Volume Socket Release Issue
Having some application that is ran within a container.
Besides the rest it starts listening a unix socket within a pre mounted volume directory. Previously file is pre cleaned up if exists any.
The ...
0
votes
0
answers
79
views
Unix domain sockets in rust with interprocess intermittent 'failed to fill whole buffer'
I have a rust program that starts up a server process and listens on a specific unix domain socket for incoming connections. Incoming connections connect to this domain socket, send a single request ...
0
votes
0
answers
247
views
java.lang.UnsatisfiedLinkError: could not load FFI provider jnr.ffi.provider.jffi.Provider
I am using docker and colima setup to run automation tests locally and encountering this error, that does not seem to start docker.
Error message:
java.lang.UnsatisfiedLinkError: could not load FFI ...
0
votes
0
answers
823
views
docker socket over socat get write: broken pipe
I'm trying to share the docker unix socket with a user inside a docker (docker in docker), it work well for most commands but for some I got a "broken pipe" on the daemon side.
docker run -v ...
2
votes
2
answers
2k
views
Unix Socket Connections Refused On Docker Volume
I seem to be hitting some sort of permissions issue while trying to use unix sockets between my host and a Docker container.
Within a running container, I have a server listening to a unix socket on a ...
2
votes
1
answer
376
views
Unable to connect to docker mysql unix socket
I'm trying to setup mysql within a docker container but I want to connect to it via a unix socket when I try to connect I get this error:
(web-YtJryoMm-py3.8) redacted@myhost testsocket % mysql -u ...
1
vote
1
answer
1k
views
Cannot bind X UNIX socket within Docker container
I am trying to run Xvfb within a Docker container, but it is failing with the error:
$ Xvfb :0 -nolisten tcp -screen 0 1024x768x24
_XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
...
0
votes
1
answer
420
views
Why would it be necessary to give a docker container access to the docker socket?
I am reading a docker run command where it maps /var/run/docker.sock
like:
docker run -it --net=host --rm -v /var/run/docker.sock:/var/run/docker.sock theimage /bin/bash
Why would the container would ...
0
votes
1
answer
558
views
Executing PHP curl from inside of the container via docker socket
I'm facing very similar problem to the one described here: cURL request to Unix socket from php.
I'm running a docker container and I want to execute the equivalent of curl --unix-socket /var/run/...
0
votes
1
answer
2k
views
My gRPC client could not connect to my Containerised gRPC Server hosted on the same machine
I am implementing a gRPC client and server application where my gRPC server is containerised. The idea is to use Unix domain sockets to communicate between the client and the server. My application ...
0
votes
1
answer
2k
views
Unix socket connection in postgres docker
I'm using flyway to version the state of my DB and the postgres docker. I'm trying to run a script in /docker-entrypoint-initdb.d/ that I want to run before postgres listens on TCP. The script creates ...
2
votes
1
answer
5k
views
Sharing Linux socket between Docker containers
I have two Docker containers—redis (running a Redis database) and node (running a Node.js application). My Node.js application needs to communicate with the Redis database, but I'm not sure how I ...
0
votes
1
answer
167
views
Should I start learning kubernetes before or after the removal of the dockershim component?
It has been a while since I started working with Docker, also I have been planning to learn Kubernetes but noticed that it will be removing the dockershim component that enables Docker as a Kubernetes ...
0
votes
0
answers
475
views
CloudSQL with unix sockets not accessible in CloudRun instance that built through CloudBuild
I'm pushing a simple cloudbuild code for WordPress with --add-cloudsql-instances but unix sockets not showing up, just an empty folder.
Instance is MySQL 8,--add-cloudsql-instances creates /cloudsql
...
2
votes
1
answer
1k
views
Bidirectional communication on stdin/stdout from container to host?
I'm building a development Docker image I intend to run on my local machine. On this image I want to put two programs; I'll call them progA and progB. I am not the author of these programs, so I ...