GitHub 0

Upgrading

Keep your Pocket ID installation up to date

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

  1. Stop Pocket ID
  2. Remove the old binary:
rm pocket-id
  1. 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
  1. Rename the binary and make it executable:
mv pocket-id-<operating-system>-<architecture> pocket-id chmod +x pocket-id
  1. Start Pocket ID again:
./pocket-id
Help improve this page
Edit this page on GitHub