wburon commented on issue #284:
URL: https://github.com/apache/pulsar-manager/issues/284#issuecomment-635421163


   sure !
   I use Docker Desktop for Windows 10.
   ```yml
   version: "3.7"
   services:
     pulsar:
       image: apachepulsar/pulsar:2.5.0
       command: bin/pulsar standalone
       hostname: pulsar
       ports:
         - "8080:8080"
         - "6650:6650"
       restart: unless-stopped
       volumes:
         - pulsardata:/pulsar/data
     dashboard:
       image: apachepulsar/pulsar-manager:v0.1.0
       ports:
         - "9527:9527"
       depends_on:
         - pulsar
       links:
         - pulsar
       environment:
         REDIRECT_HOST: "http://127.0.0.1";
         REDIRECT_PORT: "9527"
         DRIVER_CLASS_NAME: "org.postgresql.Driver"
         URL: "jdbc:postgresql://127.0.0.1:5432/pulsar_manager"
         USERNAME: "pulsar"
         PASSWORD: "pulsar"
         LOG_LEVEL: "DEBUG"
         SPRING_APPLICATION_JSON : |
           {
            "logging": { "file": "/logs/backend.log"}
           }
       volumes:
         - ./logs:/logs
         - pulsarui:/data
   volumes:
     pulsarui:
     pulsardata:
   ```


----------------------------------------------------------------
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.

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


Reply via email to