You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
679 B
25 lines
679 B
# PROJECT: 康来生物有限公司kicc(智慧冷链)分布式架构平台 |
|
# VERSION: 1.0.0 |
|
# Author: 康来生物科技有限公司-王翔 |
|
|
|
version: "3" |
|
services: |
|
fileview: |
|
image: keking/kkfileview:latest |
|
container_name: kicc-fileview |
|
hostname: kicc-fileview |
|
restart: always |
|
environment: |
|
# https://github.com/kekingcn/kkFileView/blob/master/server/src/main/config/application.properties |
|
KK_FILE_DIR: "/file" |
|
KK_FILE_UPLOAD_ENABLED: true |
|
networks: |
|
- docker-cloud_default |
|
volumes: |
|
- /usr/software/dockerDatabase/kicc-fileview/file:/file |
|
ports: |
|
- 8086:8012 |
|
|
|
networks: |
|
docker-cloud_default: |
|
external: true
|
|
|