You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2022/05/25 02:38:51 UTC

[GitHub] [pulsar] drianpauL commented on issue #15230: [Docker] - Unable to mount /pulsar/data in the 2.10.0 image version

drianpauL commented on issue #15230:
URL: https://github.com/apache/pulsar/issues/15230#issuecomment-1136660863

   Another workaround is to create a custom/derived Docker image and create the `data` directory with the correct permissions
   ```
   FROM apachepulsar/pulsar:2.10.0
   
   USER 0
   RUN mkdir /pulsar/data && chmod g+w /pulsar/data
   
   USER 10000
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org