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.
24 lines
611 B
24 lines
611 B
# PROJECT: 康来生物有限公司kicc(智慧冷链)分布式架构平台 |
|
# VERSION: 1.0.0 |
|
# Author: 康来生物科技有限公司-王翔 |
|
|
|
# https://support.websoft9.com/docs/docker/zh/solution-compose.html#command |
|
version: '3' |
|
services: |
|
|
|
# docker管理面板,已经中文汉化 |
|
portainer: |
|
image: 6053537/portainer-ce |
|
container_name: portainer |
|
hostname: portainer |
|
volumes: |
|
- portainer_data:/data |
|
- /usr/software/dockerDatabase/portainer/docker.sock:/var/run/docker.sock |
|
restart: always |
|
ports: |
|
- 8051:9000 |
|
|
|
# 配置卷 |
|
volumes: |
|
portainer_data: |
|
driver: local
|
|
|