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.yml 1.4 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. version: '3'
  18. services:
  19. seata-server:
  20. image: seataio/seata-server:1.5.2
  21. ports:
  22. - "8091:8091"
  23. - "7091:7091"
  24. environment:
  25. - SEATA_PORT=8091
  26. - STORE_MODE=file
  27. zookeeper:
  28. image: zookeeper
  29. ports:
  30. - "2181:2181"
  31. restart: on-failure
  32. mysql:
  33. image: mysql:5.7
  34. container_name: mysql
  35. environment:
  36. - MYSQL_ROOT_PASSWORD=12345678
  37. command: --default-authentication-plugin=mysql_native_password --default-time-zone='+08:00'
  38. volumes:
  39. - ./mysql:/docker-entrypoint-initdb.d
  40. - ./mysql/mysqld.cnf:/etc/mysql/mysql.conf.d/mysqld.cnf
  41. ports:
  42. - "3306:3306"