From 5159edbea1b70a0b7bca5ccc8dd36392eee7b9ed Mon Sep 17 00:00:00 2001 From: Walkx Date: Fri, 13 May 2022 18:58:06 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Adds=20documentation=20for=20vol?= =?UTF-8?q?ume=20mounting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6f90f23a1..995b137ce 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ _Requirements_: **Standard Docker Install** ```sh -docker run --name homarr -p 7575:7575 -d ghcr.io/ajnart/homarr +docker run --name homarr -p 7575:7575 -v /data/docker/homarr:/app/data/configs -d ghcr.io/ajnart/homarr:latest ``` **Docker Compose** @@ -56,12 +56,16 @@ version: '3' services: homarr: container_name: homarr - image: ghcr.io/ajnart/homarr + image: ghcr.io/ajnart/homarr:latest restart: unless-stopped + volumes: + - /data/docker/homarr:/app/data/configs ports: - '7575:7575' ``` +***Getting EACCESS errors in the logs? Try running `sudo chmod 775 /directory-you-mounted-to`!*** + ### Building from Source 🛠️ _Requirements_: