mirror of https://github.com/1Panel-dev/1Panel
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.
26 lines
612 B
26 lines
612 B
version: '3'
|
|
services:
|
|
1panel_minio:
|
|
image: minio/minio:RELEASE.2022-08-13T21-54-44Z
|
|
container_name: 1panel_minio
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:9000
|
|
- "9001:9001"
|
|
restart: always
|
|
command: server /data --console-address ":9001"
|
|
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
|
|
|
|
networks:
|
|
1panel:
|
|
external: true |