I\'m trying to learn how to use docker compose with a simple setup of an nginx container that reroutes requests to a ghost container. I\'m using the standard ghost image but hav
You can also add a
tty: true
to the service in your docker-compose.yml:
docker-compose.yml
webserver: build: . volumes: - "./src:/var/www/html" ports: - 8080:80 depends_on: - aap-mysql tty: true
and it should stay running after
docker-compose up