csckcac commented on issue #47775:
URL: https://github.com/apache/doris/issues/47775#issuecomment-2939179507

   `docker-compose-doris.yaml:`
   ```
   version: "3"
   networks:
     default:
       name: doris-net
       driver: bridge
       ipam:
         config:
           - subnet: 192.21.80.0/24
   
   services:
     fe:
       image: apache/doris:fe-3.0.5
       hostname: fe
       ports:
         - 8030:8030
         - 9030:9030
         - 9010:9010
       environment:
         - FE_SERVERS=fe1:192.21.80.2:9010
         - FE_ID=1
       networks:
         default:
           ipv4_address: 192.21.80.2
   
     be:
       image: apache/doris:be-3.0.5
       hostname: be
       ports:
         - 8040:8040
         - 9050:9050
       environment:
         - FE_SERVERS=fe1:192.21.80.2:9010
         - BE_ADDR=192.21.80.3:9050
       depends_on:
         - fe
       networks:
         default:
           ipv4_address: 192.21.80.3
   ```
   `docker compose -f docker-compose-doris.yaml up -d`
   
   Can start under Windows + WSL2 + Debian


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to