...
- `docker-compose up -d`
- Start the system in detached mode - no endless log in the terminal.
- `docker-compose down -v`
- (Gracefully) stop the system, `-v` specifies that the volumes (data) of the containers should be removed as well
- `docker ps -a`
- Show (`-a` for all) running containers
- `docker-compose logsĀ [servicecontainer-name]`
- Show the logs of a specific container, leave empty for all logs
- `docker-compose run [servicecontainer-name] bash`
- 'Enter' the container using bash.
...