From ba8367f637e5c382a740956d9736dc8bd1a49a72 Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Fri, 14 Oct 2022 13:40:27 -0800 Subject: [PATCH] fix: compose example (#70) --- docs/docs/quick-start.md | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/docs/docs/quick-start.md b/docs/docs/quick-start.md index bad7bc4..21fdba9 100644 --- a/docs/docs/quick-start.md +++ b/docs/docs/quick-start.md @@ -15,19 +15,20 @@ docker run --name=homebox \ ```yml version: "3.4" - services: - homebox: - image: ghcr.io/hay-kot/homebox:latest - container_name: homebox - restart: always - environment: - - HBOX_LOG_LEVEL=info - - HBOX_LOG_FORMAT=text - - HBOX_WEB_MAX_UPLOAD_SIZE=10 - volumes: - - homebox-data:/data/ - ports: - - 3100:7745 + +services: + homebox: + image: ghcr.io/hay-kot/homebox:latest + container_name: homebox + restart: always + environment: + - HBOX_LOG_LEVEL=info + - HBOX_LOG_FORMAT=text + - HBOX_WEB_MAX_UPLOAD_SIZE=10 + volumes: + - homebox-data:/data/ + ports: + - 3100:7745 volumes: homebox-data: