-
-
Save derFunk/7a58fe9d538035f94d6cb6826e8b25e1 to your computer and use it in GitHub Desktop.
Revisions
-
derFunk revised this gist
Sep 29, 2017 . 1 changed file with 11 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,14 @@ docker-yml() { docker inspect -f $' version: '2.2' services: {{.Name}} image: {{.Config.Image}} entrypoint: {{json .Config.Entrypoint}} command: {{json .Config.Cmd}} environment: {{range .Config.Env}} - {{.}}{{end}} volumes: {{range .Mounts}} - {{.Name}}:{{.Destination}}{{end}} ' $1 } -
lalyos created this gist
Apr 5, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ docker-yml() { docker inspect -f $' {{.Name}} image: {{.Config.Image}} entrypoint: {{json .Config.Entrypoint}} environment: {{range .Config.Env}} - {{.}}{{end}} ' $1 }