From 17736fc4329976d1c2848d310f9ccbec56bf7bf8 Mon Sep 17 00:00:00 2001 From: Thomas Camlong <49837342+ajnart@users.noreply.github.com> Date: Thu, 26 May 2022 18:29:24 +0200 Subject: [PATCH] Update README.md --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a45f1438..1cdf298a9 100644 --- a/README.md +++ b/README.md @@ -99,8 +99,14 @@ _Requirements_: - [Docker](https://docs.docker.com/get-docker/) **Standard Docker Install** -```sh -docker run --name homarr --restart unless-stopped -p 7575:7575 -v /data/docker/homarr:/app/data/configs -d ghcr.io/ajnart/homarr:latest +```bash +docker run \ + --name homarr \ + --restart unless-stopped \ + -p 7575:7575 \ + -v ./homarr/configs:/app/data/configs \ + -v ./homarr/icons:/app/public/icons \ + -d ghcr.io/ajnart/homarr:latest ``` **Docker Compose** @@ -116,7 +122,8 @@ services: image: ghcr.io/ajnart/homarr:latest restart: unless-stopped volumes: - - /data/docker/homarr:/app/data/configs + - ./homarr/configs:/app/data/configs + - ./homarr/icons:/app/public/icons ports: - '7575:7575' ```