Blame view

jeecg-boot-master/jeecg-boot/jeecg-cloud-module/docker-compose-base.yml 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: '2'
services:
  jeecg-boot-mysql:
    build:
      context: ../db
    environment:
      MYSQL_ROOT_PASSWORD: root
      MYSQL_ROOT_HOST: '%'
      TZ: Asia/Shanghai
    restart: always
    container_name: jeecg-boot-mysql
    command:
      --character-set-server=utf8mb4
      --collation-server=utf8mb4_general_ci
      --explicit_defaults_for_timestamp=true
      --lower_case_table_names=1
      --max_allowed_packet=128M
      --default-authentication-plugin=caching_sha2_password
    ports:
肖超群 authored
20
      - 3305:3306
21
22
23
24
25
26
27
28
29

  jeecg-boot-redis:
    image: redis:5.0
    ports:
      - 6379:6379
    restart: always
    container_name: jeecg-boot-redis
    hostname: jeecg-boot-redis
30
#  jeecg-boot-rabbitmq:
肖超群 authored
31
32
#    #    image: rabbitmq:3-management
#    image: rabbitmq:3
33
34
#    ports:
#      - 5672:5672
肖超群 authored
35
#    #      - 15672:15672
36
37
38
#    restart: always
#    container_name: jeecg-boot-rabbitmq
#    hostname: jeecg-boot-rabbitmq