fix(docker配置): 修复文件路径挂载错误 (#602)
* fix(docker配置): 修复文件路径挂载错误 * Update docker-compose.yml --------- Co-authored-by: 老周 <zh.sqy@qq.com>
This commit is contained in:
parent
27a9fd6618
commit
694595d446
|
|
@ -68,10 +68,8 @@ services:
|
||||||
- "8800-8810:8800-8810" # 预留
|
- "8800-8810:8800-8810" # 预留
|
||||||
- "5060-5061:5060-5061" # 预留
|
- "5060-5061:5060-5061" # 预留
|
||||||
volumes:
|
volumes:
|
||||||
- "./data/jetlinks:/application/static/upload" # 持久化上传的文件
|
- "./data/jetlinks/upload:/application/static/upload"
|
||||||
- "./data/jetlinks/:/application/data/files"
|
- "./data/jetlinks:/application/data"
|
||||||
- "./data/jetlinks/:/application/data/protocols"
|
|
||||||
- "./entrypoint.sh:/entrypoint.sh"
|
|
||||||
#entrypoint: /entrypoint.sh -d redis:5601,postgres:5432,elasticsearch:9200 'echo "start jetlinks service here"';
|
#entrypoint: /entrypoint.sh -d redis:5601,postgres:5432,elasticsearch:9200 'echo "start jetlinks service here"';
|
||||||
environment:
|
environment:
|
||||||
# - "SLEEP_SECOND=4"
|
# - "SLEEP_SECOND=4"
|
||||||
|
|
@ -115,4 +113,4 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
- redis
|
- redis
|
||||||
- elasticsearch
|
- elasticsearch
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue