Failed to deploy image due to volume permission in PostgreSQL 15.0 distribution

Hi, isn’t there an official Percona image for PostgreSQL? I tried to use ‘perconalab/percona-distribution-postgresql’ from Docker Hub in a simple Deployment, but I get this error in the Logs tab: “chmod: changing permissions of ‘/data/db’: Operation not permitted.”
How does this happen? In Docker Hub, the volume is mounted at “VOLUME [/data/db],” and from what I’ve seen, it’s not the correct path, but I don’t know how to change it if it comes from the image itself.

Deployment

Blockquote
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: percona-test
name: percona-postgres-db
spec:
selector:
matchLabels:
app: percona-postgres-db
replicas: 1
template:
metadata:
labels:
app: percona-postgres-db
spec:
volumes:
- name: percona-server-postgresql-te-1
persistentVolumeClaim:
claimName:
containers:
- name: container
image: perconalab/percona-distribution-postgresql:15
volumeMounts:
- name: percona-server-postgresql-te-1
mountPath: /data/db
#mountPath: /var/lib/postgres/db #Change the path but didn’t work here
ports:
- containerPort: 5432
protocol: TCP