From 33162123afb59525282daa59a38514b0fc085761 Mon Sep 17 00:00:00 2001 From: Maurice Date: Mon, 23 Mar 2026 20:46:20 +0100 Subject: [PATCH] Fix README update command: use real paths instead of placeholders Placeholder paths (/your/data) caused data loss when copied literally. Now uses /opt/nomad/data with a warning about correct paths. --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 32282b0..4666c32 100644 --- a/README.md +++ b/README.md @@ -132,13 +132,19 @@ docker compose up -d ### Updating ```bash -docker pull mauriceboe/nomad +docker pull mauriceboe/nomad:latest docker rm -f nomad -docker run -d --name nomad -p 3000:3000 -v /your/data:/app/data -v /your/uploads:/app/uploads --restart unless-stopped mauriceboe/nomad +docker run -d --name nomad -p 3000:3000 \ + -v /opt/nomad/data:/app/data \ + -v /opt/nomad/uploads:/app/uploads \ + --restart unless-stopped \ + mauriceboe/nomad:latest ``` Or with Docker Compose: `docker compose pull && docker compose up -d` +> **Important:** Make sure the `-v` paths point to your actual data directory (e.g. `/opt/nomad/data`). Using wrong paths will start NOMAD with an empty database. + Your data is persisted in the mounted `data` and `uploads` volumes. ### Reverse Proxy (recommended)