You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempting to use with Podman on RHEL8 results in the following error:
(hub_env) [root@*******]# dockernel install localhost/pyspark:3.2 --name spark-envTraceback (most recent call last): File "/data/mambaforge-pypy3/envs/hub_env/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen httplib_response = self._make_request( File "/data/mambaforge-pypy3/envs/hub_env/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request conn.request(method, url, **httplib_request_kw) File "/data/mambaforge-pypy3/envs/hub_env/lib/python3.9/http/client.py", line 1257, in request self._send_request(method, url, body, headers, encode_chunked) File "/data/mambaforge-pypy3/envs/hub_env/lib/python3.9/http/client.py", line 1303, in _send_request self.endheaders(body, encode_chunked=encode_chunked) File "/data/mambaforge-pypy3/envs/hub_env/lib/python3.9/http/client.py", line 1252, in endheaders self._send_output(message_body, encode_chunked=encode_chunked) File "/data/mambaforge-pypy3/envs/hub_env/lib/python3.9/http/client.py", line 1012, in _send_output self.send(msg) File "/data/mambaforge-pypy3/envs/hub_env/lib/python3.9/http/client.py", line 952, in send self.connect() File "/data/mambaforge-pypy3/envs/hub_env/lib/python3.9/site-packages/docker/transport/unixconn.py", line 43, in connect sock.connect(self.unix_socket)FileNotFoundError: [Errno 2] No such file or directoryDuring handling of the above exception, another exception occurred:
Any idea on this? Podman is a daemonless, non-root process so I thought it would integrate well. I did alias docker=podman to no avail
The text was updated successfully, but these errors were encountered:
Hi @marcelned. Dockernel uses Docker API (the Python library), not Docker CLI, and so substituting docker command with podman will have no effect.
It might be that I'm completely misunderstanding the issue, but I'm going on a vacation shortly, so I'm unable to analyze this deeper.
I haven't used podman, but if you'd like dockernel to support it - I'll consider looking into it. That will have to wait until I can shift my focus back onto dockernel, as currently I'm a bit busy with other projects.
Looks like Podman actually comes with a REST API. The claim is that it is similar to that of Docker, so it should be possible to marry Dockernel with it.
I'll make sure to steer the source code towards enabling backend plularity, but I conside the implementation of Podman as a backend a low priority for now.
Attempting to use with Podman on RHEL8 results in the following error:
Any idea on this? Podman is a daemonless, non-root process so I thought it would integrate well. I did
alias docker=podman
to no availThe text was updated successfully, but these errors were encountered: