mirror of
				https://github.com/yeasy/docker_practice.git
				synced 2025-11-03 19:31:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			198 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			198 B
		
	
	
	
		
			Go
		
	
	
	
	
	
version: '3'
 | 
						|
 | 
						|
services:
 | 
						|
  registry:
 | 
						|
    image: registry
 | 
						|
    ports:
 | 
						|
      - "443:5000"
 | 
						|
    volumes:
 | 
						|
      - ./:/etc/docker/registry
 | 
						|
      - registry-data:/var/lib/registry
 | 
						|
 | 
						|
volumes:
 | 
						|
  registry-data:
 |