Is there any way to start an interactive shell in a container using Docker Compose only? I’ve tried something like this, in my docker-compose.yml: myapp: image: alpine:latest entrypoint: /bin/sh...
I have two separate docker-compose.yml files in two different folders: ~/front/docker-compose.yml ~/api/docker-compose.yml How can I make sure that a container in front can send requests to a container in...
I am using rabbitmq and a simple python sample from here together with docker-compose. My problem is that I need to wait for rabbitmq to be fully started. From...
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...
I have several docker images that I want to use with minikube. I don’t want to first have to upload and then download the same image instead of just...
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by...
I recently started using Docker and never realized that I should use docker-compose down instead of ctrl-c or docker-compose stop to get rid of my experiments. I now have...
I installed Docker in my machine where I have Ubuntu OS. When I run: sudo docker run hello-world All is ok, but I want to hide the sudo command...
What is the difference between ports and expose options in docker-compose.yml? 5 s 5
I want to do something like this where I can run multiple commands in order. db: image: postgres web: build: . command: python manage.py migrate command: python manage.py runserver...