Use the standard docker login command with your Portyard username and password.
docker login portyard.de
You will be prompted for your username and password. Use the same credentials you use to log in to the Portyard web interface.
For CI/CD pipelines, pass your credentials directly. Use --password-stdin to avoid exposing your password in shell history.
echo "$PORTYARD_PASSWORD" | docker login portyard.de -u "$PORTYARD_USERNAME" --password-stdin
Portyard is fully OCI-compliant and works with Podman out of the box.
podman login portyard.de
Granular access tokens with scoped permissions are coming soon. For now, use your account credentials to authenticate.