This message was deleted.
# general
a
This message was deleted.
👀 1
s
Seen this as well but with a postgres deploy.
d
I’ve run docker-compose command with sudo but it also didn’t work… curious how to solve this problem.
e
I had similar issues with Cassandra and Zookeeper mount volumes on an i9 running on Ventura and Rancher 1.6.2. I was able to fix the issue by adding the user id and the group id within the docker compose file but it is not a bullet proof workaround, it did not work for other people (I assume it depends on the underlying MacOS version you are on?)
Copy code
zookeeper01:
    ...
    user: "123456788:282828282"
    volumes:
      - ./docker-data/zookeeper/data:/data
d
@enough-hairdresser-48119 May be I should try that, it that user id you added some random id ?
e
@damp-dinner-23240 the value is the result of running from command line 'echo "$(id -u):$(id -g)"'
❤️ 1
d
@enough-hairdresser-48119 Wow .. this worked for me. Thanks for the help. Thanks
❤️ 1