Flavio Crisciani
Flavio Crisciani
This PR will allow to specify the IP pools: https://github.com/docker/libnetwork/pull/2058
@A34 check that you have the kernel module available and loaded
@TheFox, did you try to force the use of IPv4 with `curl -4 `
@TheFox sometimes depending on the OS config, ipv6 is prioritized on ipv4 so curl tries ipv6 but timeout. just an idea to avoid chasing ghosts :)
@TheFox does the container ever restart and the failure is maybe happening after that?
@singhsurjeet at the moment a workaround is to give precedence to IPv4 https://community.rackspace.com/products/f/public-cloud-forum/5110/how-to-prefer-ipv4-over-ipv6-in-ubuntu-and-centos
I was able to make it work by changing the base image of my container to `FROM nvcr.io/nvidia/pytorch:24.03-py3` That base image is gigantic (~14.6 GB), so probably the best option...
I was referring to creating a docker image (https://docs.docker.com/engine/install/) My Dockerfile looks like: ``` FROM nvcr.io/nvidia/pytorch:24.03-py3 RUN apt update && apt install -y wget COPY start.sh / RUN chmod +x...
@mavenugo @abhinandanpb is this ready to go in?