Bind-Mounting a Folder Containing Git Repo Denied with Z option on macOS
by Mehdi Haghgoo
Here's my (partial) compose.yaml definition for my project:
services:
producer:
# image: docker.io/library/rabbitmq:4-management
build:
context: .
dockerfile: Containerfile.producer
env_file: env.ini
ports:
- 8080:8080
hostname: producer
volumes:
- .:/app:Z
- producer-vol:/var/lib/rabbitmq
command: python3 /app/producer.py
I have a folder for my project that contains a .git repo. When I run "docker-compose up", I get "permission denied" error.
Error response from daemon: lsetxattr /Users/mehdi/src/rabbitmq-play/.git/objects/pack/pack-de07fb2c81ced36671a7a97c6432e71e880bf618.pack: permission denied
Does anyone have experience with this error when trying to bind-mount a git repo?
- mehdi
1 week, 4 days
Podman v5.4.2 Released
by Do Not Reply
Hi all,
Podman v5.4.2 is now available. You may view the full details at
https://github.com/containers/podman/releases/tag/v5.4.2
Release Notes:
--------------
### Bugfixes
- Fixed a bug where the `podman import` command could not import images compressed with algorithms other than gzip ([#25593](https://github.com/containers/podman/issues/25593)).
- Fixed a bug where the `podman cp` command could deadlock when copying into a non-empty volume on a container that is not running ([#25585](https://github.com/containers/podman/issues/25585)).
### API
- Fixed a bug where the default values for some fields in the Libpod Create endpoint for Containers did not have sensible defaults for some healthcheck fields, causing unrestricted log growth for containers which did not set these fields ([#25473](https://github.com/containers/podman/issues/25473)).
### Misc
- Updated vendored Buildah to v1.39.4
- Updated the containers/common library to v0.62.3
- Updated the containers/image library to v5.34.3
- Updated the containers/storage library to v1.57.2
This message was generated by an automated system. Replies to the sender will bounce, be ignored and discarded.
3 weeks