ninedocker/services/30-minio/dockercompose/dockercompose.yml

16 lines
399 B
YAML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

services:
# Minio
# Stocakge S3
# Port interne 9000 pour le stockage / Port interne 9001 pour l'interface web
minio:
image: bitnami/minio
container_name: nine-minio
restart: unless-stopped
env_file: ./services/30-minio/env/.env.merge
ports:
- "9001:9001"
networks:
- nine-network
volumes:
- './services/30-minio/volume/data:/data'