mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 18:46:36 +08:00
commit:支持flowable工作流
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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
|
||||
@@ -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