Launch in background
docker-compose up -d
If you want to rebuild docker images you can use –build flag after up command. This is essentially same as you would write:
# docker build .
# docker run myimage
docker-compose up –build
Stop containers
docker-compose down
List running images on containers
docker-compose ps