Files
website/docs/setup/upgrading.md
Kyle Mendell d3151392f0 docs: merge preview into main for 2.0 (#186)
Co-authored-by: Elias Schneider <login@eliasschneider.com>
2026-01-02 19:21:34 +01:00

1.1 KiB

title, description, order
title description order
Upgrading Keep your Pocket ID installation up to date 2

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