-
Notifications
You must be signed in to change notification settings - Fork 149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Permission problems #173
Comments
Which version are you running? How are you running the image? Are you using any mounted directories? Do you have SKIP_ROOT_SPOOL_CHOWN set? |
The latest ( I also run it on a AMD64 server, and there I dont see this problem, so it might be possible it only happens on ARM. The composefile is identical on both systems: postfix:
hostname: postfix
container_name: postfix
image: "boky/postfix:latest-alpine"
environment:
- "HOSTNAME=XXX"
- "TZ=Europe/Amsterdam"
- "MYNETWORKS=0.0.0.0/0,[::]/0"
- "ALLOW_EMPTY_SENDER_DOMAINS=true"
- "RELAYHOST=XXX"
- "RELAYHOST_USERNAME=XXX"
- "RELAYHOST_PASSWORD=XXX"
volumes:
- "/mnt/data/postfix/etc:/etc/postfix"
- "/mnt/data/postfix/keys:/etc/opendkim/keys"
- "/mnt/data/postfix/spool:/var/spool/postfix"
ports:
- 25:25
networks:
- web
dns_search: .
restart: always
stop_grace_period: 2m As you can see I have no |
I reverted back to So I am positive this regression in the ARM image was introduced recently. I was especially following |
This is really odd, as there were no changes that would cause this issue. Are you running into this issue with |
I just tried and |
Odd. But since |
That is in fact the case, but how is your |
I figured out what happened and it had nothing to do with your code, sorry. I copied my I did not realize the problem was on my end, because when I switched between versions of your image the problem disappeared. But this was because the layers of the image are cached in So sorry for bothering you. At least now you know that there is a situation in which the permissions inside the container can be different as what is specified in |
On the Alpine image I see these messages:
Even if I delete all the Postfix folders and let them be created from scratch, these errors don't go away.
What could be causing this?
The text was updated successfully, but these errors were encountered: