mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 10:36:31 +08:00
commit:升级到vue3,更新最近工作流技术栈,支持sa-token
This commit is contained in:
BIN
OrangeFormsOpen-MybatisFlex/zz-resource/.DS_Store
vendored
Normal file
BIN
OrangeFormsOpen-MybatisFlex/zz-resource/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
OrangeFormsOpen-MybatisFlex/zz-resource/db-scripts/.DS_Store
vendored
Normal file
BIN
OrangeFormsOpen-MybatisFlex/zz-resource/db-scripts/.DS_Store
vendored
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
BIN
OrangeFormsOpen-MybatisFlex/zz-resource/docker-files/.DS_Store
vendored
Normal file
BIN
OrangeFormsOpen-MybatisFlex/zz-resource/docker-files/.DS_Store
vendored
Normal file
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
version: '3.2'
|
||||
|
||||
services:
|
||||
|
||||
redis:
|
||||
container_name: redis
|
||||
build:
|
||||
context: services/redis/
|
||||
args:
|
||||
- REDIS_VER=4
|
||||
ports:
|
||||
- "6379:6379"
|
||||
volumes:
|
||||
- ./services/redis/redis.conf:/usr/local/etc/redis/redis.conf:rw
|
||||
- ./data/redis:/data:rw
|
||||
- ./logs/redis:/var/log/:rw
|
||||
|
||||
# minio1:
|
||||
# image: minio/minio:latest
|
||||
# environment:
|
||||
# # spring boot服务中的配置项需要与该值相同。
|
||||
# # nginx访问页面的登录名和密码。密码不能少于8个字符。
|
||||
# - MINIO_ACCESS_KEY=admin
|
||||
# - MINIO_SECRET_KEY=admin123456
|
||||
# volumes:
|
||||
# - ./data/minio:/data
|
||||
# - ./services/minio/config:/root/.minio
|
||||
# ports:
|
||||
# # 这个是给Java的minio客户端使用的端口。
|
||||
# - "19000:9000"
|
||||
# # 对主机控制台暴露19001接口,nginx需要将请求导入该端口号。
|
||||
# - "19001:9001"
|
||||
# command: server /data --console-address ":9001"
|
||||
@@ -0,0 +1,13 @@
|
||||
ARG REDIS_VER
|
||||
|
||||
FROM redis:${REDIS_VER}
|
||||
|
||||
COPY redis.conf /usr/local/etc/redis/redis.conf
|
||||
CMD ["redis-server", "/usr/local/etc/redis/redis.conf"]
|
||||
|
||||
# 设置时区为上海
|
||||
ENV TZ=Asia/Shanghai
|
||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||
|
||||
# Ubuntu软件源选择中国的服务器
|
||||
RUN sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user