Containers

# see a list of running containers
docker ps                          
# see a list of running and stopped containers
docker ps -a                      

Attach to a Container

# attach to a container with a command
docker exec -it <id or name> <command>
docker exec -it immich_server bash
docker exec -it immich_machine_learning bash

Logs

# see the logs for a specific container (by id or name)
docker logs <id or name>
docker logs immich_serverdocker logs immich_machine_learning