ericallam commented on issue #15647:
URL: https://github.com/apache/pulsar/issues/15647#issuecomment-1355159696

   I think I was running into a similar issue, and changing to a fresh 
pulsardata volume fixed the startup issues for me as well. This docker compose 
file now works:
   
   ```yaml
   version: "3.7"
   
   volumes:
     pulsardatav:
       driver: local
   
   services:
     pulsar:
       image: apachepulsar/pulsar:2.10.2
       ports:
         - "6650:6650"
         - "8080:8080"
       volumes:
         - "pulsardatav:/pulsar/data"
       command: bin/pulsar standalone
       container_name: pulsar
       tty: true
       stdin_open: true
       restart: always
    
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to