cccf
Version:
Common Container Configuration Format
22 lines • 516 B
JSON
[
{
"id" : "app1",
"image" : "megacorp/webapp",
"cmd" : "python server.py",
"ports" : ["80:80"],
"env" : ["FOO=BAR"],
"links" : ["$redis"],
"volumes" : ["/tmp:/tmp"],
"expose" : ["8000","3000"]
},
{
"id" : "app2",
"image" : "megacorp/webapp",
"cmd" : "python server.py",
"ports" : ["80:80"],
"env" : ["FOO=BAR"],
"links" : ["$redis"],
"volumes" : ["/tmp:/tmp"],
"expose" : ["8000","3000"]
}
]