About 974,000 results
Open links in new tab
  1. Connecting VM guest with Docker containers running on the same host

    Jan 8, 2024 · I'm in a situation where I need to test a SIP system consisting of several components (various SIP and media elements, SIP UAs) locally on my machine (Linux host). The challenge is …

  2. Does Docker Desktop run its containers in Windows or in WSL2?

    Mar 21, 2024 · The containers are running under WSL2 inside a simplified virtual machine. The VM itself is executed by Hyper-V that is running on the Windows host. Does Docker Desktop run its containers …

  3. What is the correct way to restrict access to Docker containers to only ...

    Jan 13, 2023 · I've been trying to find a way to ensure containers selectively are only accessible from the LAN that the (Linux) docker host is part of. I've seen this question asked/answered on Reddit, Stack, …

  4. Are Windows WSL2 "distributions" just docker containers under the …

    Aug 11, 2022 · Highly related questions, to be sure. Are Windows WSL2 "distributions" just docker containers under the hood? As @DanielB already answered, WSL2 distributions utilize the same …

  5. Docker containers have their own kernel or not? - Super User

    Mar 14, 2015 · I see that a lot of docker images in the docker repository are made with an Ubuntu base. What does that mean? Does each container bundle a stripped down version of the Linux kernel? Do …

  6. No internet connection inside Docker containers - Super User

    Oct 3, 2016 · I cannot execute any command requiring internet connection inside any Docker container. Works: docker run ubuntu /bin/echo 'Hello world' Does not work: docker run ubuntu apt-get update …

  7. docker containers cannot reach internet in bridge network mode

    Oct 2, 2022 · However, docker containers are not being able to reach internet when network mode is bridge. From the host, I can ping google.com and DNS resolution works fine.

  8. Docker GUI to control remote Docker host - Super User

    Dec 27, 2015 · A few years late, but Microsoft's Visual Studio Code extension - Remote Containers is great for managing remote hosts, and running docker and docker-compose commands (down, up, …

  9. How to gracefully shut down a Docker container? - Super User

    Apr 23, 2021 · The docker stop command attempts to stop a running container first by sending a SIGTERM signal to the root process (PID 1) in the container. If the process doesn't exit within this …

  10. How host.docker.internal works on Windows - Super User

    Jun 25, 2024 · The docker bridges are like virtual switches, with one of their ports connected to the host, and the others connected to the containers. So the docker host is like connected to multiple LANs …