2022-12-12 11:50:51 +08:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
1panel_minio:
|
|
|
|
image: minio/minio:RELEASE.2022-08-13T21-54-44Z
|
|
|
|
container_name: 1panel_minio
|
|
|
|
ports:
|
|
|
|
- ${PANEL_APP_PORT_HTTP}:9000
|
2022-12-28 18:59:05 +08:00
|
|
|
- ${PORT_API}:9001
|
2022-12-12 11:50:51 +08:00
|
|
|
restart: always
|
2022-12-28 18:59:05 +08:00
|
|
|
command: server /data --console-address :9000 --address :9001
|
2022-12-12 11:50:51 +08:00
|
|
|
environment:
|
|
|
|
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
|
|
|
|
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
|
|
|
|
logging:
|
|
|
|
options:
|
|
|
|
max-size: "5M"
|
|
|
|
max-file: "10"
|
|
|
|
driver: json-file
|
|
|
|
networks:
|
|
|
|
- 1panel
|
|
|
|
volumes:
|
|
|
|
- ./data:/data
|
2022-12-19 12:49:19 +08:00
|
|
|
labels:
|
|
|
|
createdBy: "Apps"
|
2022-12-12 11:50:51 +08:00
|
|
|
|
|
|
|
networks:
|
|
|
|
1panel:
|
|
|
|
external: true
|