About 59 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. 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 11 months ago Viewed 41k times

  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. How do I get a console-like connection into a Docker container's shell?

    3407 docker attach will let you connect to your Docker container, but this isn't really the same thing as ssh. If your container is running a webserver, for example, docker attach will probably connect you to …

  5. docker - What is the '--rm' flag doing? - Stack Overflow

    The "docker run rm " command makes us run a new container and later when our work is completed then it is deleted by saving the disk space. The important thing to note is, the container is just like a …

  6. Docker Container time & timezone (will not reflect changes)

    Apr 15, 2015 · Where do Docker containers get their time information? I've created some containers from the basic ubuntu:trusty image, and when I run it and request 'date', I get UTC time. For awhile I …

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

    You can also run a fresh container in the foreground with docker run -ti <your_wiki_image> to see what that does. You may need to map some config from your docker-compose yml to the docker …

  8. How to login to Docker Hub on the command line? - Stack Overflow

    Jul 19, 2019 · I have read some Docker tutorials and I see this command line: docker login -u LOGIN -p PASSWORD But the registry server URL is never set. How does the docker command know the …

  9. docker - What is the difference between CMD and ENTRYPOINT in a ...

    Feb 4, 2014 · This allowed Docker to implement RUN quickly by relying on the shell's parser. Later on, people asked to be able to customize this, so ENTRYPOINT and --entrypoint were introduced. …

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

    May 20, 2017 · I normally prefer to manage my apps on my OSX with brew I am able to install docker, docker-compose and docker-machine docker --version Docker version 17.05.0-ce, build 89658be …