From b5ce7f0cabd8c58a768c874b00a1b21c4ddf4a0f Mon Sep 17 00:00:00 2001 From: nuro <4991309+NuroDev@users.noreply.github.com> Date: Fri, 5 Mar 2021 16:04:51 +0000 Subject: [PATCH] docs: added Docker compose installation example (#1072) [skip ci] * Added Docker compose installation example * Update docs/getting-started/installation.md Co-authored-by: TheCatLady <52870424+TheCatLady@users.noreply.github.com> * Updated compose example formatting * Added complete docker-compose file example * Update docs/getting-started/installation.md Co-authored-by: TheCatLady <52870424+TheCatLady@users.noreply.github.com> * Added Docker compose installation example * Update docs/getting-started/installation.md Co-authored-by: TheCatLady <52870424+TheCatLady@users.noreply.github.com> * Updated compose example formatting * Added complete docker-compose file example * Update docs/getting-started/installation.md Co-authored-by: TheCatLady <52870424+TheCatLady@users.noreply.github.com> Co-authored-by: TheCatLady <52870424+TheCatLady@users.noreply.github.com> Co-authored-by: sct --- docs/getting-started/installation.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) 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