Skip to content
This repository was archived by the owner on Mar 19, 2026. It is now read-only.

citizensadvice/yaml-merge

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

yaml-merge

yaml-merge is a simple utility for merging any number of YAML files in the order they are given as arguments and the result is put to STDOUT.

Example usage

Given two files foo.yaml

foo: 1
bar: 2

and bar.yaml

bar: 20
baz: 30

Running

docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) yaml-merge foo.yaml
bar.yaml

should output

foo: 1
bar: 20
baz: 30

It's on Docker

Available on the Docker Hub as citypantry/yaml-merge

About

Merge YAML files with ease!

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Ruby 64.1%
  • Dockerfile 35.9%