mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			404 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			404 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package config
 | 
						|
 | 
						|
type RegistryConfig struct {
 | 
						|
	Mirrors      []string     `toml:"mirrors"`
 | 
						|
	PlainHTTP    *bool        `toml:"http"`
 | 
						|
	Insecure     *bool        `toml:"insecure"`
 | 
						|
	RootCAs      []string     `toml:"ca"`
 | 
						|
	KeyPairs     []TLSKeyPair `toml:"keypair"`
 | 
						|
	TLSConfigDir []string     `toml:"tlsconfigdir"`
 | 
						|
}
 | 
						|
 | 
						|
type TLSKeyPair struct {
 | 
						|
	Key         string `toml:"key"`
 | 
						|
	Certificate string `toml:"cert"`
 | 
						|
}
 |