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 characters
| 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}} |
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 characters
| #!/usr/bin/env bash | |
| # TODO: Look at nixpkgs/pkgs/build-support/setup-hooks/auto-patchelf.sh | |
| # https://ms-vsliveshare.gallery.vsassets.io/_apis/public/gallery/publisher/MS-vsliveshare/extension/vsliveshare/0.3.423/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage | |
| set -eu | |
| TOOLS="patchelf xsel" | |
| DEPS="utillinux.out openssl.out icu zlib curl.out lttng-ust libsecret libkrb5" |
OlderNewer