JimuReport/jimureport-example/docker-compose.yml

27 lines
585 B
YAML
Raw Permalink Normal View History

2021-03-22 10:00:30 +00:00
version: '2'
services:
jimureport-mysql:
build:
context: ./db
environment:
MYSQL_ROOT_PASSWORD: root
restart: always
container_name: jimureport-mysql
image: jimureport-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
ports:
- 3307:3306
jimureport:
2021-03-22 10:00:30 +00:00
build:
context: .
restart: always
container_name: jimureport
image: jimureport
2021-03-22 10:00:30 +00:00
ports:
- 8085:8085