Issue in setup passbolt on mobile, getting gopenpgp decryption error

Checklist
I have read intro post: About the Installation Issues category
I have read the tutorials, help and searched for similar issues
I provide relevant information about my server (component names and versions, etc.)
I provide a copy of my logs and healthcheck
I describe the steps I have taken to trouble shoot the problem
I describe the steps on how to reproduce the issue

here I’m adding the screenshot of the mobile.

and this is the healthcheck

Hi @max can you please give me an idea about what I should do for it?

Hey @nik,

You really need to fix your GPG issues here otherwise you won’t be able to do much.

yes, I tried (with same error) on another instance it worked for mobile. so, is it a server configuration issue? or something else.

Yes with the healthcheck that you shared it’s a server configuration issue. You will need to follow the instructions listed in healthcheck [help]. If following the instructions don’t work you will need to tell us more on which method you used to install passbolt and share more information with us.

Hi @remy i used docker compose to setup passbolt and file is-
version: “3.9”
services:
passbolt:
image: passbolt/passbolt:latest-ce
restart: unless-stopped
container_name:
environment:
APP_FULL_BASE_URL: https://passbolt.com
DATASOURCES_DEFAULT_HOST: “ip”
DATASOURCES_DEFAULT_DRIVER: Cake\Database\Driver\Postgres
DATASOURCES_DEFAULT_PORT:
DATASOURCES_DEFAULT_ENCODING: ‘utf8’
DATASOURCES_DEFAULT_USERNAME:
DATASOURCES_DEFAULT_PASSWORD:
DATASOURCES_DEFAULT_DATABASE:
EMAIL_TRANSPORT_DEFAULT_HOST:
EMAIL_TRANSPORT_DEFAULT_PORT:
EMAIL_TRANSPORT_DEFAULT_USERNAME:
EMAIL_TRANSPORT_DEFAULT_PASSWORD:
EMAIL_TRANSPORT_DEFAULT_TLS: “true”
volumes:
- gpg_volume:/etc/passbolt/gpg
- jwt_volume:/etc/passbolt/jwt
- ./certs/cert.pem:/etc/ssl/certs/certificate.crt:ro
- ./certs/key.pem:/etc/ssl/certs/certificate.key:ro
command: >
bash -c “echo ‘debconf debconf/frontend select Noninteractive’ | debconf-set-selections;
apt-get update;
apt-get install -y php-pgsql;
/usr/bin/wait-for.sh -t 0 ip:5432 – /docker-entrypoint.sh”
ports:
- 8088:80
- 8089:443

volumes:
database_volume:
gpg_volume:
jwt_volume: