parent
7a049134bc
commit
8a69698108
@ -0,0 +1,14 @@
|
|||||||
|
FROM mysql:8.0.19
|
||||||
|
|
||||||
|
MAINTAINER opsli.com
|
||||||
|
LABEL version=V1.3.3
|
||||||
|
LABEL description=OPSLI-快速开发平台
|
||||||
|
LABEL qqGroup=724850675
|
||||||
|
|
||||||
|
ENV TZ=Asia/Shanghai
|
||||||
|
|
||||||
|
# 切换为上海时区
|
||||||
|
RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime \
|
||||||
|
&& echo $TZ > /etc/timezone
|
||||||
|
|
||||||
|
COPY ./opsli-boot.sql /docker-entrypoint-initdb.d
|
@ -0,0 +1,51 @@
|
|||||||
|
version: '3.3'
|
||||||
|
services:
|
||||||
|
# 构建 MySQL数据库 这里不指定数据库文件 防止误操作 等隐患问题
|
||||||
|
opsli-boot-mysql:
|
||||||
|
build: ./db-file
|
||||||
|
image: opsli-boot-mysql
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
# root 账户默认密码 生产时请更改
|
||||||
|
MYSQL_ROOT_PASSWORD: 123456
|
||||||
|
MYSQL_ROOT_HOST: '%'
|
||||||
|
TZ: Asia/Shanghai
|
||||||
|
LANG: en_US.UTF-8
|
||||||
|
container_name: opsli-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
|
||||||
|
volumes:
|
||||||
|
- /var/mysql/data:/var/lib/mysql #挂载 MySQL数据
|
||||||
|
ports:
|
||||||
|
- "3306:3306"
|
||||||
|
|
||||||
|
# 构建 Redis
|
||||||
|
opsli-boot-redis:
|
||||||
|
image: redis:6.2.3
|
||||||
|
restart: always
|
||||||
|
container_name: opsli-boot-redis
|
||||||
|
environment:
|
||||||
|
TZ: Asia/Shanghai
|
||||||
|
LANG: en_US.UTF-8
|
||||||
|
command: redis-server /usr/local/etc/redis/redis.conf --appendonly yes # 表示通过挂载配置文件追加配置
|
||||||
|
volumes:
|
||||||
|
- /var/redis/data:/data #挂载 Redis数据
|
||||||
|
- /var/redis/conf/redis.conf:/usr/local/etc/redis/redis.conf #挂载 Redis配置
|
||||||
|
ports:
|
||||||
|
- "6379:6379"
|
||||||
|
|
||||||
|
opsli-boot:
|
||||||
|
build: ./
|
||||||
|
restart: on-failure
|
||||||
|
depends_on:
|
||||||
|
- opsli-boot-mysql
|
||||||
|
- opsli-boot-redis
|
||||||
|
container_name: opsli-boot
|
||||||
|
image: opsli-boot
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
Loading…
Reference in new issue