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...
  • May 5, 2022
  • 0 Comments
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...
  • May 4, 2022
  • 0 Comments
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...
  • April 27, 2022
  • 0 Comments