From 83c386e853bc21ace4b4d6e277726b42b0c165e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Urban?= Date: Fri, 1 Mar 2024 18:24:11 +0100 Subject: [PATCH] fix: docker image in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ec529d..d818b94 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Here's an example `docker-compose.yml` snippet for setting up Doclytics: version: '3' services: doclytics: - image: bjoern5urban/doclytics:latest + image: bjoern5urban/doclytics:v1.0.0 environment: PAPERLESS_BASE_URL: http://your-paperless-instance PAPERLESS_TOKEN: yourapitoken @@ -89,7 +89,7 @@ This configuration mounts a local directory (`./data`) to the `/app/data` direct Alternatively, you can use `docker run` to start the container: ```bash -docker run --network="host" -e PAPERLESS_BASE_URL=http://your-paperless-instance -e PAPERLESS_TOKEN=yourapitoken bjoern5urban/doclytics:latest +docker run --network="host" -e PAPERLESS_BASE_URL=http://your-paperless-instance -e PAPERLESS_TOKEN=yourapitoken bjoern5urban/doclytics:v1.0.0 ``` Ensure to replace `http://your-paperless-instance` and `yourapitoken` with your actual Paperless instance URL and API token. > [!IMPORTANT]