chore(docs): FAQs, geocoding, jobs, search, and user settings (#1160)

This commit is contained in:
Jason Rasmussen
2022-12-22 11:31:17 -05:00
committed by GitHub
parent feaf21373a
commit da9c961fca
24 changed files with 151 additions and 37 deletions

View File

@@ -0,0 +1,4 @@
{
"label": "Guides",
"position": 5
}

View File

@@ -0,0 +1,23 @@
---
sidebar_position: 1
---
# Docker Help
## Logs
```bash title="Log Examples"
docker ps # see a list of running containers
docker ps -a # see a list of running and stopped containers
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.
:::