diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2022-11-13 23:01:03 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2022-11-13 23:01:03 -0500 |
| commit | 85c9eb99cbd32d479dd0e9139746c0979f9a50d4 (patch) | |
| tree | bdc7257c84f2471617fb64066aaa400395d62db7 /snips | |
| parent | e1d67f5fc07f64c54cedb9a3a006c026cb224aeb (diff) | |
| download | dotfiles-85c9eb99cbd32d479dd0e9139746c0979f9a50d4.tar.gz dotfiles-85c9eb99cbd32d479dd0e9139746c0979f9a50d4.tar.xz | |
Add a few new snippets
Diffstat (limited to 'snips')
| -rw-r--r-- | snips/aws/user-data | 1 | ||||
| -rw-r--r-- | snips/docker-registry/all-repos | 2 | ||||
| -rw-r--r-- | snips/docker-registry/tags-for-repo | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/snips/aws/user-data b/snips/aws/user-data new file mode 100644 index 0000000..3c33572 --- /dev/null +++ b/snips/aws/user-data @@ -0,0 +1 @@ +curl http://169.254.169.254/2009-04-04/user-data ; echo diff --git a/snips/docker-registry/all-repos b/snips/docker-registry/all-repos new file mode 100644 index 0000000..9a3ffa4 --- /dev/null +++ b/snips/docker-registry/all-repos @@ -0,0 +1,2 @@ +# export registry=https://my-registry.example.com +# curl -X GET $registry/v2/_catalog diff --git a/snips/docker-registry/tags-for-repo b/snips/docker-registry/tags-for-repo new file mode 100644 index 0000000..f69420b --- /dev/null +++ b/snips/docker-registry/tags-for-repo @@ -0,0 +1 @@ +# export repo=example ; curl -X GET $registry/v2/$repo/tags/list |
