About 746,000 results
Open links in new tab
  1. "docker pull" certificate signed by unknown authority

    After doing the steps above I got rid of x509: certificate signed by unknown authority but then I got 401 Unauthorized errors. To solve I needed to docker login <docker registry>

  2. How to install tzdata on a ubuntu docker image? - Server Fault

    Jan 21, 2019 · How to install tzdata on a ubuntu docker image? Ask Question Asked 6 years, 11 months ago Modified 2 years, 6 months ago

  3. windows - How to start the docker daemon? - Stack Overflow

    May 25, 2017 · If you're using Docker for Windows, Then simply start the desktop app installed in C:\Program Files\Docker\Docker\Docker Desktop.exe You can also stop Docker for Windows …

  4. dockerfile - How do I set environment variables during the "docker ...

    I'm trying to set environment variables in docker container during the build but without success. Setting them when using run command works but I need to set them during the build. …

  5. How can I use environment variables in docker-compose?

    I would like to be able to use environment variables inside docker-compose.yml, with values passed in at the time of docker-compose up. This is the example. I am doing this today with a …

  6. Stop and remove all docker containers - Stack Overflow

    How can I stop and remove all docker containers to create a clean slate with my Docker containers? Lots of times I feel it is easier to start from scratch, but I have a bunch of …

  7. How do I make a Docker container start automatically on system …

    $ sudo systemctl enable docker 2) Then if you have docker-compose .yml file add restart: always or if you have docker container add restart=always like this: docker run --restart=always and …

  8. What is docker run -it flag? - Stack Overflow

    Jan 21, 2018 · 73 docker run -it ubuntu:xenial /bin/bash starts the container in the interactive mode (hence -it flag) that allows you to interact with /bin/bash of the container. That means …

  9. How can I run bash in a docker container? - Stack Overflow

    Apr 9, 2017 · In this question, docker/whalesay is an image, not a container. For future reader who wants to run bash in an existing container, How to start a stopped Docker container with a …

  10. How to restart a single container with docker-compose

    Jul 17, 2015 · I have a docker-compose.yml file that contains 4 containers: redis, postgres, api and worker. During the development of the worker container, I often need to restart it in order …