You can list all running Docker containers by using the following command in terminal:
```
docker ps
```
This command will show you information about all active containers, including their IDs, image names, command, their created and status, ports and names.
If you want to see all the Docker containers including both running and stopped containers, you can run:
```
docker ps -a
```