When i install SteamOS container to UNRAID it does not get network connection due of incorrect ip config. Is it possible to fix this somehow or i need to edit ip config on my own inside of docker container?
provide your docker run and container logs, if you dont know how to get the docker run, google “how to get docker run on unraid”
If you’re having trouble with the SteamOS container on UNRAID not getting a network connection due to incorrect IP configuration, there are a few things you can try. First, check the container’s network mode. By default, Docker containers use bridge mode, which can sometimes cause networking issues. You can try switching the network mode to host mode, where the container shares the same network interface as your host system. This is often the easiest fix and can be done directly in the UNRAID settings.
If that doesn’t work, you might need to manually configure the IP address inside the container. You can access the container’s shell through UNRAID and edit the network configuration files (like /etc/network/interfaces
or /etc/netplan/
depending on the container’s OS). Another option is to use Docker’s macvlan network driver, which allows the container to have its own IP address on your network, separate from the host. Finally, make sure there are no firewall rules or other network restrictions blocking the connection, and check the container logs for any relevant error messages.
Start with adjusting the network mode to host mode, as it’s the simplest solution, and if that doesn’t resolve the issue, you can proceed with the other steps.