[GH-ISSUE #589] [DOCS]: Method of updating the docker image is not clearly given. #341

Closed
opened 2026-02-22 18:19:02 -05:00 by yindo · 2 comments
Owner

Originally created by @sumitsodhi88 on GitHub (Jan 13, 2024).
Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/589

Description

It is good that the application is being updated with the latest features. I am using Ollma and Anything LLM both in the docker, and it is running on my old Acer Nitro 5 like a charm. But I would like to update the application as soon as a new version is available. I would love to have a single command to update the application. If it is already there, please provide one in the documentation. I am a vey newbie to all these things, so I am sorry if I am raising an issue like this.

Originally created by @sumitsodhi88 on GitHub (Jan 13, 2024). Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/589 ### Description It is good that the application is being updated with the latest features. I am using Ollma and Anything LLM both in the docker, and it is running on my old Acer Nitro 5 like a charm. But I would like to update the application as soon as a new version is available. I would love to have a single command to update the application. If it is already there, please provide one in the documentation. I am a vey newbie to all these things, so I am sorry if I am raising an issue like this.
yindo added the documentation label 2026-02-22 18:19:02 -05:00
yindo closed this issue 2026-02-22 18:19:02 -05:00
Author
Owner

@timothycarambat commented on GitHub (Jan 13, 2024):

All you need to do is stop the running container of AnythingLLM
run docker pull mintplexlabs/anythingllm (will pull latest image)
then restart container pointing it at the same place the previous container was storing information at

export STORAGE_LOCATION=$HOME/anythingllm && \
mkdir -p $STORAGE_LOCATION && \
touch "$STORAGE_LOCATION/.env" && \
docker run -d -p 3001:3001 \
--cap-add SYS_ADMIN \
-v ${STORAGE_LOCATION}:/app/server/storage \
-v ${STORAGE_LOCATION}/.env:/app/server/.env \
-e STORAGE_DIR="/app/server/storage" \
mintplexlabs/anythingllm
@timothycarambat commented on GitHub (Jan 13, 2024): All you need to do is stop the running container of AnythingLLM run `docker pull mintplexlabs/anythingllm` (will pull latest image) then restart container pointing it at the same place the previous container was storing information at ``` export STORAGE_LOCATION=$HOME/anythingllm && \ mkdir -p $STORAGE_LOCATION && \ touch "$STORAGE_LOCATION/.env" && \ docker run -d -p 3001:3001 \ --cap-add SYS_ADMIN \ -v ${STORAGE_LOCATION}:/app/server/storage \ -v ${STORAGE_LOCATION}/.env:/app/server/.env \ -e STORAGE_DIR="/app/server/storage" \ mintplexlabs/anythingllm ```
Author
Owner

@sumitsodhi88 commented on GitHub (Jan 13, 2024):

oh ok thanks

@sumitsodhi88 commented on GitHub (Jan 13, 2024): oh ok thanks
yindo changed title from [DOCS]: Method of updating the docker image is not clearly given. to [GH-ISSUE #589] [DOCS]: Method of updating the docker image is not clearly given. 2026-06-05 14:34:48 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#341