mirror of
https://github.com/immich-app/immich.git
synced 2025-01-09 21:36:46 +01:00
1e2f02613f
* refactor: reset-admin-password * chore: docs
39 lines
955 B
Markdown
39 lines
955 B
Markdown
---
|
|
sidebar_position: 1
|
|
---
|
|
|
|
# Docker Help
|
|
|
|
## Containers
|
|
|
|
```bash
|
|
docker ps # see a list of running containers
|
|
docker ps -a # see a list of running and stopped containers
|
|
```
|
|
|
|
## Attach to a Container
|
|
|
|
```bash
|
|
docker exec -it <id or name> <command> # attach to a container with a command
|
|
docker exec -it immich_server sh
|
|
docker exec -it immich_microservices sh
|
|
docker exec -it immich_machine_learning sh
|
|
docker exec -it immich_web sh
|
|
docker exec -it immich_proxy sh
|
|
```
|
|
|
|
## Logs
|
|
|
|
```bash
|
|
docker logs <id or name> # see the logs for a specific container (by id or name)
|
|
|
|
docker logs immich_server
|
|
docker logs immich_microservices
|
|
docker logs immich_machine_learning
|
|
docker logs immich_web
|
|
docker logs immich_proxy
|
|
```
|
|
|
|
:::tip Follow a log
|
|
Adding `--follow` to a `docker logs <id or name>` command will stream new logs, instead of immediately exiting, which is often useful for debugging.
|
|
:::
|