Skip to content

Instantly share code, notes, and snippets.

@jlhawn
Last active August 29, 2015 14:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlhawn/1c177252d343ae042e09 to your computer and use it in GitHub Desktop.
Save jlhawn/1c177252d343ae042e09 to your computer and use it in GitHub Desktop.
Registry Notification Types

Registry Notification Types

Manifests

Manifest Pushed

  • Name
  • Tag
  • Manifest Hash
  • Current Time
  • Account (If Known)
Example
{
	"name": "library/ubuntu",
	"tag": "14.04",
	"manifestHash": "sha256:2c39bdf1854ced6871b52452cbe8833edda34c7f299583567b400cecf2998837",
	"currentTime": "2015-01-13T00:15:28.469328",
	"url": "https://registry.docker.com/v2/library/ubuntu/manifests/14.04/sha256%3A2c39bdf1854ced6871b52452cbe8833edda34c7f299583567b400cecf2998837",
	"account": "tianon"
}

Manifest Pulled

  • Name
  • Tag
  • Manifest Hash
  • Current Time
  • Account (If Known)
Example
{
	"name": "jlhawn/crawler-webserver",
	"tag": "v3.1.4-a159",
	"manifestHash": "sha256:941e74dc593fc8976122c316647048399fa0b490b858769739924eea5ea14334",
	"currentTime": "2015-01-13T00:18:05.236706",
	"url": "https://registry.docker.com/v2/jlhawn/crawler-webserver/manifests/v3.1.4-a159/sha256%3A941e74dc593fc8976122c316647048399fa0b490b858769739924eea5ea14334",
	"account": "samalba"
}

Manifest Removed

  • Name
  • Tag
  • Manifest Hash
  • Current Time
  • Account (If Known)
Example
{
	"name": "dmcgowan/fresh-baked-cookies",
	"tag": "chocolate-chip",
	"manifestHash": "sha256:4f98543ac6f792c1352e8c5a0555601ab3fd3497810581606c36c7416c5ffe37",
	"currentTime": "2015-01-13T00:18:54.781669",
	"url": "https://registry.docker.com/v2/dmcgowan/fresh-baked-cookies/manifests/chocolate-chip/sha256%3A4f98543ac6f792c1352e8c5a0555601ab3fd3497810581606c36c7416c5ffe37",
	"account": "dmcgowan"
}

Blobs

Blob Pushed (Upon conclusion)

  • Name
  • Blob Hash
  • Current Time
  • Account (If Known)
Example
{
	"name": "dmp42/portrait-landscape",
	"blobHash": "sha256:bb40a9ef6deed88cb1de6a50b6e2df6d301f52374805b98ca77b819b0f3ed3fa",
	"currentTime": "2015-01-13T00:21:58.110908",
	"url": "https://registry.docker.com/v2/dmp42/portrait-landscape/blobs/sha256%3Abb40a9ef6deed88cb1de6a50b6e2df6d301f52374805b98ca77b819b0f3ed3fa",
	"account": "goforgopher"
}

Blob Pulled (Upon conclusion)

  • Name
  • Blob Hash
  • Current Time
  • Account (If Known)
Example
{
	"name": "stevvooe/fresh-powder",
	"blobHash": "sha256:d712d5f15eda3abf569f3423714ad10d065d43421ad9efeeb9f6a1f6113ce0a8",
	"currentTime": "2015-01-13T00:23:15.083209",
	"url": "https://registry.docker.com/v2/stevvooe/fresh-powder/blobs/sha256%3Ad712d5f15eda3abf569f3423714ad10d065d43421ad9efeeb9f6a1f6113ce0a8",
	"account": "mikelipz"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment