appstore-1panel/apps/minio/2024-11-07/docker-compose.yml
Meng Sen 593018d97a 应用标准化
Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
2024-11-27 17:54:18 +08:00

35 lines
968 B
YAML

networks:
1panel-network:
external: true
services:
minio:
image: minio/minio:RELEASE.2024-11-07T00-52-20Z.fips
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
- ${PANEL_APP_PORT_API}:${MINIO_API_PORT}
command: server --console-address :${PANEL_APP_PORT_HTTP} --address :${MINIO_API_PORT} --json
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
extra_hosts:
- ${MINIO_SERVER_HOST:-localhost}:127.0.0.1
volumes:
- ${MINIO_ROOT_PATH}/certs:/root/.minio/certs
- ${MINIO_ROOT_PATH}/data:/data
logging:
options:
max-size: "5M"
max-file: "10"
driver: json-file
environment:
- MINIO_VOLUMES=/data
- MINIO_API_ROOT_ACCESS=on
- MINIO_BROWSER_REDIRECT=true