What is the difference between docker and docker-compose
docker manages single containers
docker-compose manages multiple container applications
docker manages single containers
docker-compose manages multiple container applications
Learn how to install and use Docker to run a multi-service Flask, Celery and Redis application in development with Docker Compose.
Others have mentioned docker logs $container_id to view the output of the application. This would always be my first thing to check.
Next, you can run a docker inspect $container_id to view details on the state.