Interactive shell using Docker Compose

0 votes

I was trying to start an interactive shell in a container using docker compose only.

I tried something like this

myapp:
  image: alpine:latest
  entrypoint: /bin/sh

When I start this container using docker using docker compose, it exits immediately.

Can someone help me out?

Jul 26, 2018 in Docker by Hannah
• 18,570 points
6,180 views

1 answer to this question.

0 votes

You need to include the following lines in your docker-compose.yml:

stdin_open: true
tty: true
answered Jul 26, 2018 by Kalgi
• 52,360 points

Related Questions In Docker

+1 vote
5 answers

Set containers timezones by using docker compose.

version "2" services: serviceA: ...READ MORE

answered Jul 9, 2018 in Docker by Atul
• 10,240 points
22,765 views
0 votes
1 answer
+3 votes
4 answers

How do I execute multiple commands using docker-compose

It can be solve by using bash -c ...READ MORE

answered Sep 20, 2018 in Docker by shubham
• 7,340 points
109,877 views
+2 votes
1 answer
+2 votes
1 answer

Deploy Docker Containers from Docker Cloud

To solve this problem, I followed advice ...READ MORE

answered Sep 3, 2018 in AWS by Priyaj
• 58,090 points
2,470 views
0 votes
2 answers

How to edit file after I shell to a docker container?

You can even install it using a ...READ MORE

answered Apr 23, 2019 in Docker by Ashish
17,490 views
0 votes
1 answer

How to get docker-compose to always re-create containers from fresh images?

The containers are getting recreated to preserve ...READ MORE

answered Jul 27, 2018 in Docker by Kalgi
• 52,360 points
4,403 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP