Skip to content
Snippets Groups Projects
Verified Commit cac18ffa authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

fix(dovecot): Fix broken vmail permissions

parent 37c3341b
No related branches found
No related tags found
No related merge requests found
Pipeline #14265 passed
...@@ -123,7 +123,7 @@ dovecot: ...@@ -123,7 +123,7 @@ dovecot:
repository: quay.io/shivering-isles/dovecot repository: quay.io/shivering-isles/dovecot
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# -- Overrides the image tag whose default is "latest" # -- Overrides the image tag whose default is "latest"
tag: "0.1.0" tag: "0.1.1"
# -- pull secret to access the afore defined image # -- pull secret to access the afore defined image
imagePullSecrets: [] imagePullSecrets: []
...@@ -131,7 +131,7 @@ dovecot: ...@@ -131,7 +131,7 @@ dovecot:
podAnnotations: {} podAnnotations: {}
podSecurityContext: {} podSecurityContext: {}
# fsGroup: 2000 # fsGroup: 5000
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
......
release=0.1.0 release=0.1.1
...@@ -30,6 +30,8 @@ RUN addgroup --gid "$GID" "$USER" \ ...@@ -30,6 +30,8 @@ RUN addgroup --gid "$GID" "$USER" \
--uid "$UID" \ --uid "$UID" \
"$USER" "$USER"
RUN mkdir /srv/mail && chown 5000:5000 /srv/mail
VOLUME /srv/mail VOLUME /srv/mail
# 24: LMTP # 24: LMTP
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment