docker 安装 Jumureport (积木报表)

官网地址

复制代码
https://www.jimureport.com/reportDesign

官方文档地址

项目介绍 | JimuReport 文档*https://help.jimureport.com/

docker 安装

复制代码
https://help.jimureport.com/docker?_highlight=docker

docker-compose.yml

复制代码
services:
  jimureport-mysql:
    environment:
      MYSQL_ROOT_PASSWORD: root
    restart: always
    container_name: jimureport-mysql
    image: registry.cn-hangzhou.aliyuncs.com/jeecgdocker/jimureport-mysql:1.9.3
    command:
      --character-set-server=utf8mb4
      --collation-server=utf8mb4_general_ci
      --explicit_defaults_for_timestamp=true
      --lower_case_table_names=1
      --max_allowed_packet=128M
    ports:
      - 13323:3306

  jimureport:
    container_name: jimureport
    image: registry.cn-hangzhou.aliyuncs.com/jeecgdocker/jimureport:1.9.3
    ports:
      - 13324:8085

访问地址:

复制代码
http://localhost:13324/login/login.html