first commit
This commit is contained in:
		
							
								
								
									
										5
									
								
								.env.app.dist
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								.env.app.dist
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
MINIO_ROOT_USER=admin
 | 
			
		||||
MINIO_ROOT_PASSWORD=XXX
 | 
			
		||||
 | 
			
		||||
MINIO_BROWSER_REDIRECT_URL=https://minio-console.example.org
 | 
			
		||||
MINIO_DOMAIN=minio.example.org
 | 
			
		||||
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
.env.app
 | 
			
		||||
							
								
								
									
										16
									
								
								compose.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								compose.yaml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
			
		||||
version: "3.8"
 | 
			
		||||
 | 
			
		||||
services:
 | 
			
		||||
  minio:
 | 
			
		||||
    # https://quay.io/repository/minio/minio?tab=tags&tag=latest
 | 
			
		||||
    image: quay.io/minio/minio:RELEASE.2025-04-22T22-12-26Z
 | 
			
		||||
    container_name: minio-hdd
 | 
			
		||||
    restart: unless-stopped
 | 
			
		||||
    env_file:
 | 
			
		||||
      - .env.app
 | 
			
		||||
    volumes:
 | 
			
		||||
      - /mnt/user/minio-hdd/data:/data
 | 
			
		||||
    ports:
 | 
			
		||||
      - 127.0.0.1:9000:9000 # Server
 | 
			
		||||
      - 127.0.0.1:9011:9001 # WebUI
 | 
			
		||||
    command: server /data --console-address ":9001"
 | 
			
		||||
		Reference in New Issue
	
	Block a user