You've already forked dcmerge
							
							feat: support depends_on
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				continuous-integration/drone/push Build is passing
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			This PR supports the extended pattern of `depends_on`. If the short version of
`depends_on` is defined, it will be migrated to the extended version like the
example below:
```yaml
services:
  web:
    depends_on
    - database
services:
  web:
    depends_on:
      database:
        condition: service_started
```
All three types of merging strategies are supported.
			
			
This commit is contained in:
		@@ -8,7 +8,7 @@ import (
 | 
			
		||||
	"os"
 | 
			
		||||
 | 
			
		||||
	"git.cryptic.systems/volker.raschek/dcmerge/pkg/domain/dockerCompose"
 | 
			
		||||
	"gopkg.in/yaml.v2"
 | 
			
		||||
	"gopkg.in/yaml.v3"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func Fetch(urls ...string) ([]*dockerCompose.Config, error) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user