You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

docker-compose.env.yml 251 B

1234567891011121314
  1. version: "3.8"
  2. services:
  3. mysql:
  4. image: mysql:8.0.30
  5. ports:
  6. - "3306:3306"
  7. environment:
  8. - MYSQL_ROOT_PASSWORD=root
  9. - MYSQL_DATABASE=spring-boot-demo
  10. zookeeper:
  11. image: zookeeper:3.8.0
  12. ports:
  13. - "2181:2181"