diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index b0efe68d2..29327b7c1 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -25,6 +25,30 @@ docker run -d \ {% endtab %} +{% tab title="Compose" %} + +**docker-compose.yml:** + +```yaml +--- +version: "3" + +services: + overseerr: + image: sctx/overseerr:latest + container_name: overseerr + environment: + - LOG_LEVEL=info + - TZ=Asia/Tokyo + ports: + - 5055:5055 + volumes: + - /path/to/appdata/config:/app/config + restart: unless-stopped +``` + +{% endtab %} + {% tab title="UID/GID" %} ```text