About 60 results
Open links in new tab
  1. Sudden Docker error about "client API version" - Stack Overflow

    Nov 11, 2025 · Docker doesn’t always keep the client-server API versions in perfect sync, so if the daemon jumps to something like 1.44 and your TestContainers setup is still locked on 1.32, it just …

  2. How do I get a console-like connection into a Docker container's shell ...

    Here are some related resources: openssh-server doesn't start in Docker container How can I get Bash or ssh into a running container in background mode? Can you run GUI applications in a Linux Docker …

  3. docker - Correct way to detach from a container without stopping it ...

    In Docker 1.1.2 (latest), what's the correct way to detach from a container without stopping it? So for example, if I try: docker run -i -t foo /bin/bash or docker attach foo (for already running

  4. WSL-Docker: curl: (60) SSL certificate problem: unable to get local ...

    May 9, 2022 · WSL-Docker: curl: (60) SSL certificate problem: unable to get local issuer certificate Asked 3 years, 11 months ago Modified 10 months ago Viewed 41k times

  5. How do I pass environment variables to Docker containers?

    Using docker-compose, you can inherit environment variables in docker-compose.yml and subsequently any Dockerfile (s) called by docker-compose to build images. This is useful when the Dockerfile RUN …

  6. What is docker.io in relation to docker-ce and docker-ee (now called ...

    Jul 11, 2017 · 253 Previously, to install Docker, I would use apt-get install docker.io However, I have recently noticed the documentation for installing docker, and it uses docker-ce. I have tried to find the …

  7. How to copy Docker images from one host to another without using a ...

    When using docker-machine, you can do docker $(docker-machine config mach1) save <image> | docker $(docker-machine config mach2) load to copy images between machines mach1 and mach2.

  8. Difference between "docker compose" and "docker-compose"

    Mar 7, 2021 · The docker compose (with a space) is a newer project to migrate compose to Go with the rest of the docker project. This is the v2 branch of the docker/compose repo. It's been first introduced …

  9. docker - How to fix a container stuck in an endless restart loop ...

    48 When docker kill CONTAINER_ID does not work and docker stop -t 1 CONTAINER_ID also does not work, you can try to delete the container: docker container rm CONTAINER_ID I had a similar issue …

  10. Cannot connect to the Docker daemon on macOS - Stack Overflow

    May 20, 2017 · On macOS the docker binary is only a client and you cannot use it to run the docker daemon, because Docker daemon uses Linux-specific kernel features, therefore you can’t run …