- build container
make build
- build and run the container
make run
- start the container and open localhost
make start
- container status
docker-compose ps -a
- run a command in the container
docker-compose exec -option simple_app <command>
- stop all running containers
make clean
- remove all stopped containers
make deepclean
docker logs --since=15m -t simple_app
follows as a background process
docker logs -f --since=15m -t <container> &`
make tests