Secryn updates are delivered through the Self-Host Pro Docker registry. To pull updated images manually, you need a Docker access token from your Self-Host Pro product dashboard.
The install script handles authentication automatically during the initial setup. You only need to create an access token yourself if you want to:
You will receive:
The token is only shown once, so store it securely.
Use your token to authenticate Docker against the Self-Host Pro registry:
docker login shpcr.io -u [email protected] -p your-token
To avoid storing the token in shell history, use stdin instead:
echo "your-token" | docker login shpcr.io -u [email protected] --password-stdin
Pull the latest Secryn image:
docker pull shpcr.io/emrys/secryn:latest
Then restart the deployment from the installation directory:
cd /srv/secryn
docker compose up -d
From the Secryn product page in Self-Host Pro, you can manage existing access tokens.
Regenerating creates a new token and immediately invalidates the old one.
Deleting permanently removes the token. You will need to create a new one before Docker can authenticate again.