Upgrading
Updating to a New Version
Docker
For upgrading Pocket ID when using Docker, you just need to pull the latest image and restart the services:
docker compose pull
docker compose up -d
Stand-alone
-
Stop Pocket ID
-
Remove the old binary:
rm pocket-id
-
Download the latest binary from the releases page.
Make sure to download the correct version for your operating system. The binary names follow this pattern:
pocket-id-<operating-system>-<architecture>
- Example:
pocket-id-linux-amd64
You can use curl to download the binary directly. For example, for Linux on AMD64 architecture:
curl -L -o pocket-id-linux-amd64 https://github.com/pocket-id/pocket-id/releases/latest/download/pocket-id-linux-amd64
-
Rename the binary and make it executable:
mv pocket-id-<operating-system>-<architecture> pocket-id
chmod +x pocket-id -
Start Pocket ID again:
./pocket-id