Problem
Hello,
The current documentation does not properly cover how to update an existing CashPilot Docker installation.
The commonly suggested approach (e.g. docker compose pull && docker compose up -d) is not sufficient in my case, as changes are not fully applied.
Working update procedure
The following commands are required to properly update the application:
docker compose down
docker compose build --no-cache
docker compose up -d
Suggestion
It would be useful to add this as the official update procedure in the documentation, or at least clarify when a full rebuild is required instead of a simple image pull.
This would prevent confusion and ensure users correctly update their deployment.
Thanks for your work.
Proposed Solution
Update documentation
Alternatives Considered
No response
Contribution
Problem
Hello,
The current documentation does not properly cover how to update an existing CashPilot Docker installation.
The commonly suggested approach (e.g. docker compose pull && docker compose up -d) is not sufficient in my case, as changes are not fully applied.
Working update procedure
The following commands are required to properly update the application:
docker compose down
docker compose build --no-cache
docker compose up -d
Suggestion
It would be useful to add this as the official update procedure in the documentation, or at least clarify when a full rebuild is required instead of a simple image pull.
This would prevent confusion and ensure users correctly update their deployment.
Thanks for your work.
Proposed Solution
Update documentation
Alternatives Considered
No response
Contribution