services: << service_name >>: image: minio/minio:latest container_name: << service_name >> environment: - TZ=<< timezone >> - MINIO_ROOT_USER=<< root_user >> - MINIO_ROOT_PASSWORD=<< root_password >> volumes: - << appdata_dir >>/<< service_name >>:/data command: server /data --console-address ":9001" ports: - "<< port >>:9000" - "<< port_console >>:9001" restart: unless-stopped