[ 
https://issues.apache.org/jira/browse/MESOS-9320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16665793#comment-16665793
 ] 

Gilbert Song commented on MESOS-9320:
-------------------------------------

The root caused is found. This issue shares the same root cause as MESOS-9334, 
but with different symptom.

*Reproduce*
We could reproduce this issue easily, under certain conditions:
On one single machine, scale up 100 tasks running `sleep 10` command tasks and 
have the scheduler to relaunch task if any finishes. This creates a situation 
that there are always some containers being destroyed. Then, launch a container 
using an image with a lot of layers 
(`kvish/jenkins-dev:595c74f713f609fd1d3b05a40d35113fc03227c9` in this case with 
~90 layers). As expected, this container launch would be stuck.

*Root cause*
This is a race between a container launch while another container is being 
destroyed. This is triggered by a bug in cgroup listener finalize() method. The 
event FD is closed before an io::read() future finishes the .onDiscard() call 
back which clean up the event in libevent poll. To explain the bottom of this 
issue, libevent supports multiple events pointing to the same FD, but it 
becomes a race in this case because the new container launch io::read() pick up 
a FD relief by another container destroy. The libevent would disable the FD 
when it clean up one of event that is not cleaned up yet. Please see MESOS-9334 
for details.

*Fix*
https://reviews.apache.org/r/69123/

> UCR container launch stuck at PROVISIONING during image fetching.
> -----------------------------------------------------------------
>
>                 Key: MESOS-9320
>                 URL: https://issues.apache.org/jira/browse/MESOS-9320
>             Project: Mesos
>          Issue Type: Bug
>          Components: containerization
>            Reporter: Gilbert Song
>            Assignee: Gilbert Song
>            Priority: Major
>              Labels: containerizer
>
> We observed mesos containerizer stuck at PROVISIONING when launching a mesos 
> container using docker image: 
> `kvish/jenkins-dev:595c74f713f609fd1d3b05a40d35113fc03227c9`:
> The image pulling never finishes. Insufficient image contents are still in 
> image store staging directory 
> /var/lib/mesos/slave/store/docker/staging/egLYqO, forever.
> {noformat}
> OK-22:50:06-root@int-agent89-mwst9:/var/lib/mesos/slave/store/docker/staging/egLYqO
>  # ls -alh
> total 1.1G
> drwx------. 2 root root 4.0K Oct 15 13:02 .
> drwxr-xr-x. 3 root root   20 Oct 15 22:40 ..
> -rw-r--r--. 1 root root  59K Oct 15 13:02 manifest
> -rw-r--r--. 1 root root 2.6K Oct 15 13:02 
> sha256:08239cb71d7a3e0d8ed680397590b338a2133117250e1a3e2ee5c5c45292db63
> -rw-r--r--. 1 root root  440 Oct 15 13:02 
> sha256:0984904c0e1558248eb25e93d9fc14c47c0052d58569e64c185afca93a060b66
> -rw-r--r--. 1 root root  248 Oct 15 13:02 
> sha256:0bbc7b377a9155696eb0b684bd1999bc43937918552d73fd9697ea50ef46528a
> -rw-r--r--. 1 root root  240 Oct 15 13:02 
> sha256:0c5c0c095e351b976943453c80271f3b75b1208dbad3ca7845332e873361f3bb
> -rw-r--r--. 1 root root  562 Oct 15 13:02 
> sha256:1558b7c35c9e25577ee719529d6fcdddebea68f5bdf8cbdf13d8d75a02f8a5b1
> -rw-r--r--. 1 root root  11M Oct 15 13:02 
> sha256:1ab373b3deaed929a15574ac1912afc6e173f80d400aba0e96c89f6a58961f2d
> -rw-r--r--. 1 root root  130 Oct 15 13:02 
> sha256:1b6c70b3786f72e5255ccd51e27840d1c853a17561b5e94a4359b17d27494d50
> -rw-r--r--. 1 root root  176 Oct 15 13:02 
> sha256:1bf4aab5c3b363b4fdfc46026df9ae854db8858a5cbcccdd4409434817d59312
> -rw-r--r--. 1 root root  380 Oct 15 13:02 
> sha256:213b0c5bb5300df1d2d06df6213ae94448419cf18ecf61358e978a5d25651d5a
> -rw-r--r--. 1 root root  71M Oct 15 13:02 
> sha256:31aaab384e3fa66b73eced4870fc96be590a2376e93fd4f8db5d00f94fb11604
> -rw-r--r--. 1 root root 1.4K Oct 15 13:02 
> sha256:32442b7d159ed2b7f00b00a989ca1d3ee1a3f566df5d5acbd25f0c3dfdad69d1
> -rw-r--r--. 1 root root 653K Oct 15 13:02 
> sha256:340cd692075b636b5e1803fcde9b1a56a2f6e2728e4fb10f7295d39c7d0e0d01
> -rw-r--r--. 1 root root  184 Oct 15 13:02 
> sha256:398819b00c6cbf9cce6c1ed25005c9e1242cace7a6436730e17da052000c7f90
> -rw-r--r--. 1 root root 366K Oct 15 13:02 
> sha256:41d78c0cb1b2a47189068e55f61d6266be14c4fa75935cb021f17668dd8e7f94
> -rw-r--r--. 1 root root  23K Oct 15 13:02 
> sha256:4f5852c22c7ce0155494b6e86a0a4c536c3c95cb87cad84806aa2d56184b95d2
> -rw-r--r--. 1 root root 384M Oct 15 13:02 
> sha256:4fe621515c4d23e33d9850a6cdfc3aa686d790704b9c5569f1726b4469aa30c0
> -rw-r--r--. 1 root root 1.5K Oct 15 13:02 
> sha256:50dcd1d0618b1d42bf6633dc8176e164571081494fa6483ec4489a59637518bc
> -rw-r--r--. 1 root root  48M Oct 15 13:02 
> sha256:57c8de432dbe337bb6cb1ad328e6c564303a3d3fd05b5e872fd9c47c16fdd02c
> -rw-r--r--. 1 root root  30M Oct 15 13:02 
> sha256:63a0f0b6b5d7014b647ac4a164808208229d2e3219f45a39914f0561a4f831bf
> -rw-r--r--. 1 root root 306M Oct 15 13:02 
> sha256:67f41ed73c082c6ffee553a90b0abd56bc74b260d90b9d594d652b66cbcd5e7f
> -rw-r--r--. 1 root root  435 Oct 15 13:02 
> sha256:6cb303e084ed78386ae87cdaf95e8817d48e94b3ce7c0442a28335600f0efa3d
> -rw-r--r--. 1 root root 5.5K Oct 15 13:02 
> sha256:7d4d905c2060a5ec994ec201e6877714ee73030ef4261f9562abdb0f844174d5
> -rw-r--r--. 1 root root  39M Oct 15 13:02 
> sha256:80d923f4b955c2db89e2e8a9f2dcb0c36a29c1520a5b359578ce2f3d0b849d10
> -rw-r--r--. 1 root root  615 Oct 15 13:02 
> sha256:842cc8bd099d94f6f9c082785bbaa35439af965d1cf6a13300830561427c266b
> -rw-r--r--. 1 root root  712 Oct 15 13:02 
> sha256:977c8e6687e0ca5f0682915102c025dc12d7ff71bf70de17aab3502adda25af2
> -rw-r--r--. 1 root root  12K Oct 15 13:02 
> sha256:989ac24c53a1f7951438aa92ac39bc9053c178336bea4ebe6ab733d4975c9728
> -rw-r--r--. 1 root root  861 Oct 15 13:02 
> sha256:a18e3c45bf91ac3bd11a46b489fb647a721417f60eae66c5f605360ccd8d6352
> -rw-r--r--. 1 root root   32 Oct 15 13:02 
> sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4
> -rw-r--r--. 1 root root 266K Oct 15 13:02 
> sha256:b1d3e8de8ec6d87b8485a8a3b66d63125a033cfb0711f8af24b4f600f524e276
> -rw-r--r--. 1 root root 1.6K Oct 15 13:02 
> sha256:b3a122ff7868d2ed9c063df73b0bf67fd77348d3baa2a92368b3479b41f8aa74
> -rw-r--r--. 1 root root 4.2M Oct 15 13:02 
> sha256:b542772b417703c0311c0b90136091369bcd9c2176c0e3ceed5a0114d743ee3c
> -rw-r--r--. 1 root root 1.1K Oct 15 13:02 
> sha256:b6e3599b777bb2dd681fd84f174a7e0ce3cb01f5a84dcd3c771d0e999a39bc58
> -rw-r--r--. 1 root root 2.8K Oct 15 13:02 
> sha256:b970c9afc934d5e6bb524a6057342a1d1cc835972f047a805f436c540ee20747
> -rw-r--r--. 1 root root 6.3M Oct 15 13:02 
> sha256:b984f623b82721cc642c25cd4797f6c3d2c01b6b063c49905a97bb0a7f0725a5
> -rw-r--r--. 1 root root 1.8K Oct 15 13:02 
> sha256:c0cc702ea6bfc6490ccb2edd9d9c8070964ae2023129d14f90729d0b365f6215
> -rw-r--r--. 1 root root 4.1K Oct 15 13:02 
> sha256:cbedea0328015d1baf1efdd06b2417283f6314c0ef671bc0246ada3221ca21ac
> -rw-r--r--. 1 root root  355 Oct 15 13:02 
> sha256:cc7516477cdbfa791d6fd66c9c19b46036cc294f884d8ebbbd0a7fc878433c87
> -rw-r--r--. 1 root root 165M Oct 15 13:02 
> sha256:d9bbcf733166f991331a80e1cd55a91111c4ba96fc7ce1ecabd05b450b7da7a3
> -rw-r--r--. 1 root root 872K Oct 15 13:02 
> sha256:da44f64ae9991a9e8cb7c2af4dfd63608bd4026552b2b6a7f523dcfac960e1ac
> -rw-r--r--. 1 root root  431 Oct 15 13:02 
> sha256:edb369c8c5d7b67e773eee549901a38b80dfa1246597815ae6eb21d1beceec1a
> -rw-r--r--. 1 root root  19M Oct 15 13:02 
> sha256:f4457f4b3bfe0282e803dd9172421048b80168d9c1433da969555fa571a4a1d6
> -rw-r--r--. 1 root root  198 Oct 15 13:02 
> sha256:f67b87ed7ea47d30c673e289d4c2fd28f5e8e3059840152932e8e813183462ec
> -rw-r--r--. 1 root root 550K Oct 15 13:02 
> sha256:f96e7fcceb6e12a816cb49d01574e29767d9cc2b6f92436f314a59570abae320
> -rw-r--r--. 1 root root  676 Oct 15 13:02 
> sha256:fec44d138823b8076f9a49148f93a7c3d6b0e79ca34b489d60b194d7b1c2c2fa
> {noformat}
> It is not clear yet why the SHA pulling does not finish, so we use the same 
> image on another empty machine with UCR. The other machine has the container 
> RUNNING correctly, and has the following staging directory before moving to 
> the layers dir:
> {noformat}
> -rw-r--r--. 1 root root 2.6K Oct 15 18:03 
> sha256:08239cb71d7a3e0d8ed680397590b338a2133117250e1a3e2ee5c5c45292db63
> -rw-r--r--. 1 root root  440 Oct 15 18:03 
> sha256:0984904c0e1558248eb25e93d9fc14c47c0052d58569e64c185afca93a060b66
> -rw-r--r--. 1 root root  248 Oct 15 18:03 
> sha256:0bbc7b377a9155696eb0b684bd1999bc43937918552d73fd9697ea50ef46528a
> -rw-r--r--. 1 root root  240 Oct 15 18:03 
> sha256:0c5c0c095e351b976943453c80271f3b75b1208dbad3ca7845332e873361f3bb
> -rw-r--r--. 1 root root  562 Oct 15 18:03 
> sha256:1558b7c35c9e25577ee719529d6fcdddebea68f5bdf8cbdf13d8d75a02f8a5b1
> -rw-r--r--. 1 root root  11M Oct 15 18:03 
> sha256:1ab373b3deaed929a15574ac1912afc6e173f80d400aba0e96c89f6a58961f2d
> -rw-r--r--. 1 root root  130 Oct 15 18:03 
> sha256:1b6c70b3786f72e5255ccd51e27840d1c853a17561b5e94a4359b17d27494d50
> -rw-r--r--. 1 root root  176 Oct 15 18:03 
> sha256:1bf4aab5c3b363b4fdfc46026df9ae854db8858a5cbcccdd4409434817d59312
> -rw-r--r--. 1 root root  380 Oct 15 18:03 
> sha256:213b0c5bb5300df1d2d06df6213ae94448419cf18ecf61358e978a5d25651d5a
> -rw-r--r--. 1 root root  71M Oct 15 18:03 
> sha256:31aaab384e3fa66b73eced4870fc96be590a2376e93fd4f8db5d00f94fb11604
> -rw-r--r--. 1 root root 1.4K Oct 15 18:03 
> sha256:32442b7d159ed2b7f00b00a989ca1d3ee1a3f566df5d5acbd25f0c3dfdad69d1
> -rw-r--r--. 1 root root 653K Oct 15 18:03 
> sha256:340cd692075b636b5e1803fcde9b1a56a2f6e2728e4fb10f7295d39c7d0e0d01
> -rw-r--r--. 1 root root  184 Oct 15 18:03 
> sha256:398819b00c6cbf9cce6c1ed25005c9e1242cace7a6436730e17da052000c7f90
> -rw-r--r--. 1 root root 366K Oct 15 18:03 
> sha256:41d78c0cb1b2a47189068e55f61d6266be14c4fa75935cb021f17668dd8e7f94
> -rw-r--r--. 1 root root  23K Oct 15 18:03 
> sha256:4f5852c22c7ce0155494b6e86a0a4c536c3c95cb87cad84806aa2d56184b95d2
> -rw-r--r--. 1 root root 122M Oct 15 18:03 
> sha256:4fe621515c4d23e33d9850a6cdfc3aa686d790704b9c5569f1726b4469aa30c0
> -rw-r--r--. 1 root root 1.5K Oct 15 18:03 
> sha256:50dcd1d0618b1d42bf6633dc8176e164571081494fa6483ec4489a59637518bc
> -rw-r--r--. 1 root root  48M Oct 15 18:03 
> sha256:57c8de432dbe337bb6cb1ad328e6c564303a3d3fd05b5e872fd9c47c16fdd02c
> -rw-r--r--. 1 root root  30M Oct 15 18:03 
> sha256:63a0f0b6b5d7014b647ac4a164808208229d2e3219f45a39914f0561a4f831bf
> -rw-r--r--. 1 root root  92M Oct 15 18:03 
> sha256:67f41ed73c082c6ffee553a90b0abd56bc74b260d90b9d594d652b66cbcd5e7f
> -rw-r--r--. 1 root root  435 Oct 15 18:03 
> sha256:6cb303e084ed78386ae87cdaf95e8817d48e94b3ce7c0442a28335600f0efa3d
> -rw-r--r--. 1 root root 5.5K Oct 15 18:03 
> sha256:7d4d905c2060a5ec994ec201e6877714ee73030ef4261f9562abdb0f844174d5
> -rw-r--r--. 1 root root  39M Oct 15 18:03 
> sha256:80d923f4b955c2db89e2e8a9f2dcb0c36a29c1520a5b359578ce2f3d0b849d10
> -rw-r--r--. 1 root root  615 Oct 15 18:03 
> sha256:842cc8bd099d94f6f9c082785bbaa35439af965d1cf6a13300830561427c266b
> -rw-r--r--. 1 root root  712 Oct 15 18:03 
> sha256:977c8e6687e0ca5f0682915102c025dc12d7ff71bf70de17aab3502adda25af2
> -rw-r--r--. 1 root root  12K Oct 15 18:03 
> sha256:989ac24c53a1f7951438aa92ac39bc9053c178336bea4ebe6ab733d4975c9728
> -rw-r--r--. 1 root root  861 Oct 15 18:03 
> sha256:a18e3c45bf91ac3bd11a46b489fb647a721417f60eae66c5f605360ccd8d6352
> -rw-r--r--. 1 root root   32 Oct 15 18:03 
> sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4
> -rw-r--r--. 1 root root 266K Oct 15 18:03 
> sha256:b1d3e8de8ec6d87b8485a8a3b66d63125a033cfb0711f8af24b4f600f524e276
> -rw-r--r--. 1 root root 1.6K Oct 15 18:03 
> sha256:b3a122ff7868d2ed9c063df73b0bf67fd77348d3baa2a92368b3479b41f8aa74
> -rw-r--r--. 1 root root 4.2M Oct 15 18:03 
> sha256:b542772b417703c0311c0b90136091369bcd9c2176c0e3ceed5a0114d743ee3c
> -rw-r--r--. 1 root root 1.1K Oct 15 18:03 
> sha256:b6e3599b777bb2dd681fd84f174a7e0ce3cb01f5a84dcd3c771d0e999a39bc58
> -rw-r--r--. 1 root root 2.8K Oct 15 18:03 
> sha256:b970c9afc934d5e6bb524a6057342a1d1cc835972f047a805f436c540ee20747
> -rw-r--r--. 1 root root 6.3M Oct 15 18:03 
> sha256:b984f623b82721cc642c25cd4797f6c3d2c01b6b063c49905a97bb0a7f0725a5
> -rw-r--r--. 1 root root 1.8K Oct 15 18:03 
> sha256:c0cc702ea6bfc6490ccb2edd9d9c8070964ae2023129d14f90729d0b365f6215
> -rw-r--r--. 1 root root  44M Oct 15 18:03 
> sha256:c73ab1c6897bf5c11da3c95cab103e7ca8cf10a6d041eda2ff836f45a40e3d3b
> -rw-r--r--. 1 root root 4.1K Oct 15 18:03 
> sha256:cbedea0328015d1baf1efdd06b2417283f6314c0ef671bc0246ada3221ca21ac
> -rw-r--r--. 1 root root  355 Oct 15 18:03 
> sha256:cc7516477cdbfa791d6fd66c9c19b46036cc294f884d8ebbbd0a7fc878433c87
> -rw-r--r--. 1 root root  82M Oct 15 18:03 
> sha256:d9bbcf733166f991331a80e1cd55a91111c4ba96fc7ce1ecabd05b450b7da7a3
> -rw-r--r--. 1 root root 872K Oct 15 18:03 
> sha256:da44f64ae9991a9e8cb7c2af4dfd63608bd4026552b2b6a7f523dcfac960e1ac
> -rw-r--r--. 1 root root  431 Oct 15 18:03 
> sha256:edb369c8c5d7b67e773eee549901a38b80dfa1246597815ae6eb21d1beceec1a
> -rw-r--r--. 1 root root  19M Oct 15 18:03 
> sha256:f4457f4b3bfe0282e803dd9172421048b80168d9c1433da969555fa571a4a1d6
> -rw-r--r--. 1 root root  198 Oct 15 18:03 
> sha256:f67b87ed7ea47d30c673e289d4c2fd28f5e8e3059840152932e8e813183462ec
> -rw-r--r--. 1 root root 550K Oct 15 18:03 
> sha256:f96e7fcceb6e12a816cb49d01574e29767d9cc2b6f92436f314a59570abae320
> -rw-r--r--. 1 root root  676 Oct 15 18:03 
> sha256:fec44d138823b8076f9a49148f93a7c3d6b0e79ca34b489d60b194d7b1c2c2fa
> {noformat}
> By comparing two cases, we can see one layer 
> `8aabf8f13bdf0feed398c7c8b0ac24db59d60d0d06f9dc6cb1400de4df898324` is missing 
> on the problematic agent node, and it is the last layer to fetch.
> Here is the manifest as a reference:
> {noformat}
> OK-17:42:20-root@int-agent89-mwst9:/var/lib/mesos/slave/store/docker/staging/egLYqO
>  # cat manifest 
> {
>    "schemaVersion": 1,
>    "name": "kvish/jenkins-dev",
>    "tag": "595c74f713f609fd1d3b05a40d35113fc03227c9",
>    "architecture": "amd64",
>    "fsLayers": [
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:0c5c0c095e351b976943453c80271f3b75b1208dbad3ca7845332e873361f3bb"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:4fe621515c4d23e33d9850a6cdfc3aa686d790704b9c5569f1726b4469aa30c0"
>       },
>       {
>          "blobSum": 
> "sha256:c0cc702ea6bfc6490ccb2edd9d9c8070964ae2023129d14f90729d0b365f6215"
>       },
>       {
>          "blobSum": 
> "sha256:4f5852c22c7ce0155494b6e86a0a4c536c3c95cb87cad84806aa2d56184b95d2"
>       },
>       {
>          "blobSum": 
> "sha256:f96e7fcceb6e12a816cb49d01574e29767d9cc2b6f92436f314a59570abae320"
>       },
>       {
>          "blobSum": 
> "sha256:b984f623b82721cc642c25cd4797f6c3d2c01b6b063c49905a97bb0a7f0725a5"
>       },
>       {
>          "blobSum": 
> "sha256:67f41ed73c082c6ffee553a90b0abd56bc74b260d90b9d594d652b66cbcd5e7f"
>       },
>       {
>          "blobSum": 
> "sha256:b6e3599b777bb2dd681fd84f174a7e0ce3cb01f5a84dcd3c771d0e999a39bc58"
>       },
>       {
>          "blobSum": 
> "sha256:6cb303e084ed78386ae87cdaf95e8817d48e94b3ce7c0442a28335600f0efa3d"
>       },
>       {
>          "blobSum": 
> "sha256:cc7516477cdbfa791d6fd66c9c19b46036cc294f884d8ebbbd0a7fc878433c87"
>       },
>       {
>          "blobSum": 
> "sha256:32442b7d159ed2b7f00b00a989ca1d3ee1a3f566df5d5acbd25f0c3dfdad69d1"
>       },
>       {
>          "blobSum": 
> "sha256:fec44d138823b8076f9a49148f93a7c3d6b0e79ca34b489d60b194d7b1c2c2fa"
>       },
>       {
>          "blobSum": 
> "sha256:1bf4aab5c3b363b4fdfc46026df9ae854db8858a5cbcccdd4409434817d59312"
>       },
>       {
>          "blobSum": 
> "sha256:977c8e6687e0ca5f0682915102c025dc12d7ff71bf70de17aab3502adda25af2"
>       },
>       {
>          "blobSum": 
> "sha256:1558b7c35c9e25577ee719529d6fcdddebea68f5bdf8cbdf13d8d75a02f8a5b1"
>       },
>       {
>          "blobSum": 
> "sha256:842cc8bd099d94f6f9c082785bbaa35439af965d1cf6a13300830561427c266b"
>       },
>       {
>          "blobSum": 
> "sha256:08239cb71d7a3e0d8ed680397590b338a2133117250e1a3e2ee5c5c45292db63"
>       },
>       {
>          "blobSum": 
> "sha256:989ac24c53a1f7951438aa92ac39bc9053c178336bea4ebe6ab733d4975c9728"
>       },
>       {
>          "blobSum": 
> "sha256:f67b87ed7ea47d30c673e289d4c2fd28f5e8e3059840152932e8e813183462ec"
>       },
>       {
>          "blobSum": 
> "sha256:63a0f0b6b5d7014b647ac4a164808208229d2e3219f45a39914f0561a4f831bf"
>       },
>       {
>          "blobSum": 
> "sha256:80d923f4b955c2db89e2e8a9f2dcb0c36a29c1520a5b359578ce2f3d0b849d10"
>       },
>       {
>          "blobSum": 
> "sha256:f4457f4b3bfe0282e803dd9172421048b80168d9c1433da969555fa571a4a1d6"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:b970c9afc934d5e6bb524a6057342a1d1cc835972f047a805f436c540ee20747"
>       },
>       {
>          "blobSum": 
> "sha256:b3a122ff7868d2ed9c063df73b0bf67fd77348d3baa2a92368b3479b41f8aa74"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:213b0c5bb5300df1d2d06df6213ae94448419cf18ecf61358e978a5d25651d5a"
>       },
>       {
>          "blobSum": 
> "sha256:a18e3c45bf91ac3bd11a46b489fb647a721417f60eae66c5f605360ccd8d6352"
>       },
>       {
>          "blobSum": 
> "sha256:50dcd1d0618b1d42bf6633dc8176e164571081494fa6483ec4489a59637518bc"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:0984904c0e1558248eb25e93d9fc14c47c0052d58569e64c185afca93a060b66"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:31aaab384e3fa66b73eced4870fc96be590a2376e93fd4f8db5d00f94fb11604"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:edb369c8c5d7b67e773eee549901a38b80dfa1246597815ae6eb21d1beceec1a"
>       },
>       {
>          "blobSum": 
> "sha256:41d78c0cb1b2a47189068e55f61d6266be14c4fa75935cb021f17668dd8e7f94"
>       },
>       {
>          "blobSum": 
> "sha256:7d4d905c2060a5ec994ec201e6877714ee73030ef4261f9562abdb0f844174d5"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:398819b00c6cbf9cce6c1ed25005c9e1242cace7a6436730e17da052000c7f90"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:cbedea0328015d1baf1efdd06b2417283f6314c0ef671bc0246ada3221ca21ac"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:340cd692075b636b5e1803fcde9b1a56a2f6e2728e4fb10f7295d39c7d0e0d01"
>       },
>       {
>          "blobSum": 
> "sha256:b1d3e8de8ec6d87b8485a8a3b66d63125a033cfb0711f8af24b4f600f524e276"
>       },
>       {
>          "blobSum": 
> "sha256:d9bbcf733166f991331a80e1cd55a91111c4ba96fc7ce1ecabd05b450b7da7a3"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:1b6c70b3786f72e5255ccd51e27840d1c853a17561b5e94a4359b17d27494d50"
>       },
>       {
>          "blobSum": 
> "sha256:0bbc7b377a9155696eb0b684bd1999bc43937918552d73fd9697ea50ef46528a"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:da44f64ae9991a9e8cb7c2af4dfd63608bd4026552b2b6a7f523dcfac960e1ac"
>       },
>       {
>          "blobSum": 
> "sha256:57c8de432dbe337bb6cb1ad328e6c564303a3d3fd05b5e872fd9c47c16fdd02c"
>       },
>       {
>          "blobSum": 
> "sha256:b542772b417703c0311c0b90136091369bcd9c2176c0e3ceed5a0114d743ee3c"
>       },
>       {
>          "blobSum": 
> "sha256:1ab373b3deaed929a15574ac1912afc6e173f80d400aba0e96c89f6a58961f2d"
>       },
>       {
>          "blobSum": 
> "sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4"
>       },
>       {
>          "blobSum": 
> "sha256:c73ab1c6897bf5c11da3c95cab103e7ca8cf10a6d041eda2ff836f45a40e3d3b"
>       }
>    ],
>    "history": [
>       {
>          "v1Compatibility": 
> "{\"architecture\":\"amd64\",\"config\":{\"Hostname\":\"\",\"Domainname\":\"\",\"User\":\"nobody\",\"AttachStdin\":false,\"AttachStdout\":false,\"AttachStderr\":false,\"ExposedPorts\":{\"50000/tcp\":{},\"8080/tcp\":{}},\"Tty\":false,\"OpenStdin\":false,\"StdinOnce\":false,\"Env\":[\"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\",\"LANG=C.UTF-8\",\"JAVA_HOME=/docker-java-home\",\"JAVA_VERSION=8u162\",\"JAVA_DEBIAN_VERSION=8u162-b12-1~deb9u1\",\"CA_CERTIFICATES_JAVA_VERSION=20170531+nmu1\",\"JENKINS_HOME=/var/jenkinsdcos_home\",\"JENKINS_SLAVE_AGENT_PORT=50000\",\"JENKINS_VERSION=2.107.2\",\"JENKINS_UC=https://updates.jenkins.io\",\"JENKINS_UC_EXPERIMENTAL=https://updates.jenkins.io/experimental\",\"COPY_REFERENCE_FILE_LOG=/var/jenkinsdcos_home/copy_reference_file.log\",\"JENKINS_FOLDER=/usr/share/jenkins\",\"JENKINS_CSP_OPTS=sandbox;
>  default-src 'none'; img-src 'self'; style-src 
> 'self';\"],\"Cmd\":[\"/bin/sh\",\"-c\",\"/usr/local/jenkins/bin/run.sh\"],\"ArgsEscaped\":true,\"Image\":\"sha256:c5e3baf9fe6fc4f564fdad4c9c4705587fad40ae28d1999a608b3547625ffefe\",\"Volumes\":{\"/var/jenkins_home\":{}},\"WorkingDir\":\"/tmp\",\"Entrypoint\":[\"/sbin/tini\",\"--\",\"/usr/local/bin/jenkins.sh\"],\"OnBuild\":[],\"Labels\":null},\"container\":\"e4111508e68c304ec5b36009773b41384b96fd887b61177cd42935b9757567fd\",\"container_config\":{\"Hostname\":\"e4111508e68c\",\"Domainname\":\"\",\"User\":\"nobody\",\"AttachStdin\":false,\"AttachStdout\":false,\"AttachStderr\":false,\"ExposedPorts\":{\"50000/tcp\":{},\"8080/tcp\":{}},\"Tty\":false,\"OpenStdin\":false,\"StdinOnce\":false,\"Env\":[\"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\",\"LANG=C.UTF-8\",\"JAVA_HOME=/docker-java-home\",\"JAVA_VERSION=8u162\",\"JAVA_DEBIAN_VERSION=8u162-b12-1~deb9u1\",\"CA_CERTIFICATES_JAVA_VERSION=20170531+nmu1\",\"JENKINS_HOME=/var/jenkinsdcos_home\",\"JENKINS_SLAVE_AGENT_PORT=50000\",\"JENKINS_VERSION=2.107.2\",\"JENKINS_UC=https://updates.jenkins.io\",\"JENKINS_UC_EXPERIMENTAL=https://updates.jenkins.io/experimental\",\"COPY_REFERENCE_FILE_LOG=/var/jenkinsdcos_home/copy_reference_file.log\",\"JENKINS_FOLDER=/usr/share/jenkins\",\"JENKINS_CSP_OPTS=sandbox;
>  default-src 'none'; img-src 'self'; style-src 
> 'self';\"],\"Cmd\":[\"/bin/sh\",\"-c\",\"#(nop) \",\"CMD [\\\"/bin/sh\\\" 
> \\\"-c\\\" 
> \\\"/usr/local/jenkins/bin/run.sh\\\"]\"],\"ArgsEscaped\":true,\"Image\":\"sha256:c5e3baf9fe6fc4f564fdad4c9c4705587fad40ae28d1999a608b3547625ffefe\",\"Volumes\":{\"/var/jenkins_home\":{}},\"WorkingDir\":\"/tmp\",\"Entrypoint\":[\"/sbin/tini\",\"--\",\"/usr/local/bin/jenkins.sh\"],\"OnBuild\":[],\"Labels\":{}},\"created\":\"2018-09-26T17:33:57.6822239Z\",\"docker_version\":\"18.03.0-ce\",\"id\":\"fb401ed0b4f9de5534c224811d0dca94b876225c31ddc3cbb0993ad2faf32cff\",\"os\":\"linux\",\"parent\":\"bb54e3dc4a692004ece424733d0ff7bbfe930bdc65491776e2f409a461e838f1\",\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"bb54e3dc4a692004ece424733d0ff7bbfe930bdc65491776e2f409a461e838f1\",\"parent\":\"2ef4a3efec8e89b04691b207a4fe3fddd2e3d3a2a539f8e7dc8a645773758e1f\",\"created\":\"2018-09-26T17:33:57.3350528Z\",\"container_config\":{\"Cmd\":[\"|11
>  BLUEOCEAN_VERSION=1.5.0 JENKINS_DCOS_HOME=/var/jenkinsdcos_home 
> JENKINS_STAGING=/usr/share/jenkins/ref/ 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274
>  
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz
>  MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8 gid=99 uid=99 
> user=nobody /bin/sh -c echo 2.0 \\u003e 
> /usr/share/jenkins/ref/jenkins.install.UpgradeWizard.state\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"2ef4a3efec8e89b04691b207a4fe3fddd2e3d3a2a539f8e7dc8a645773758e1f\",\"parent\":\"36bfc452a3f13511e6f9c0345ffac82054286eea40b02263c83ea791d00a22ea\",\"created\":\"2018-09-26T17:33:56.0461597Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  USER nobody\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"36bfc452a3f13511e6f9c0345ffac82054286eea40b02263c83ea791d00a22ea\",\"parent\":\"ea550cbe252ca3ca06771b0e837d1f7cc61c50404f7f1920ed5bc6cc816d8a0a\",\"created\":\"2018-09-26T17:33:55.6692099Z\",\"container_config\":{\"Cmd\":[\"|11
>  BLUEOCEAN_VERSION=1.5.0 JENKINS_DCOS_HOME=/var/jenkinsdcos_home 
> JENKINS_STAGING=/usr/share/jenkins/ref/ 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274
>  
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz
>  MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8 gid=99 uid=99 
> user=nobody /bin/sh -c chmod -R ugo+rw \\\"$JENKINS_HOME\\\" 
> \\\"${JENKINS_FOLDER}\\\"     \\u0026\\u0026 chmod -R ugo+r 
> \\\"${JENKINS_STAGING}\\\"     \\u0026\\u0026 chmod -R ugo+rx 
> /usr/local/jenkins/bin/     \\u0026\\u0026 chmod -R ugo+rw /var/jenkins_home/ 
>     \\u0026\\u0026 chmod -R ugo+rw /var/lib/nginx/ /var/nginx/ /var/log/nginx 
>     \\u0026\\u0026 chmod ugo+rx /usr/local/jenkins/bin/*\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"ea550cbe252ca3ca06771b0e837d1f7cc61c50404f7f1920ed5bc6cc816d8a0a\",\"parent\":\"c4c140687ce95f2d23202b7efaa543ef7d064b226864fb4a0ae68bef283e074f\",\"created\":\"2018-09-26T17:33:49.7534514Z\",\"container_config\":{\"Cmd\":[\"|11
>  BLUEOCEAN_VERSION=1.5.0 JENKINS_DCOS_HOME=/var/jenkinsdcos_home 
> JENKINS_STAGING=/usr/share/jenkins/ref/ 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274
>  
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz
>  MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8 gid=99 uid=99 
> user=nobody /bin/sh -c groupadd -g ${gid} nobody     \\u0026\\u0026 usermod 
> -u ${uid} -g ${gid} ${user}     \\u0026\\u0026 usermod -a -G users nobody     
> \\u0026\\u0026 echo 
> \\\"nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin\\\" 
> \\u003e\\u003e /etc/passwd\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"c4c140687ce95f2d23202b7efaa543ef7d064b226864fb4a0ae68bef283e074f\",\"parent\":\"2f04614030c91b184503348484780b62bda952a2905cc1fb035c5a6f371ca239\",\"created\":\"2018-09-26T17:33:48.3150654Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) ADD 
> c84b80e3ceaef7f211a221093369729eeb89e5cfc5f3d0a5cd4917e7b6c7027f in 
> /usr/share/jenkins/ref//plugins/metrics-graphite.hpi \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"2f04614030c91b184503348484780b62bda952a2905cc1fb035c5a6f371ca239\",\"parent\":\"a0ad27b653be7a9400d9e46784f897097cf24f157bfc3fb647e49c360b7c12c1\",\"created\":\"2018-09-26T17:33:47.8920446Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) ADD 
> f4d41c9bf39651b20107d62d85c101014320946e6a33763e5519ec18aee77858 in 
> /usr/share/jenkins/ref//plugins/prometheus.hpi \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"a0ad27b653be7a9400d9e46784f897097cf24f157bfc3fb647e49c360b7c12c1\",\"parent\":\"f9f80b9791fb4dd2e525de37e33e0b730809bed2b2edb7898b802d3fde3d9c08\",\"created\":\"2018-09-26T17:33:46.775839Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) ADD 
> 652f0ad5e9ad70b4db10957b64265f808b45c63d8ef07b107d3082450084164c in 
> /usr/share/jenkins/ref//plugins/mesos.hpi \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"f9f80b9791fb4dd2e525de37e33e0b730809bed2b2edb7898b802d3fde3d9c08\",\"parent\":\"0b648b2545d81712d56536a42a0a99d3d78008bf6f1f04f22d140c427b645b76\",\"created\":\"2018-09-26T17:33:45.5611867Z\",\"container_config\":{\"Cmd\":[\"|11
>  BLUEOCEAN_VERSION=1.5.0 JENKINS_DCOS_HOME=/var/jenkinsdcos_home 
> JENKINS_STAGING=/usr/share/jenkins/ref/ 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274
>  
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz
>  MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8 gid=99 uid=99 
> user=nobody /bin/sh -c /usr/local/bin/install-plugins.sh         
> blueocean-bitbucket-pipeline:${BLUEOCEAN_VERSION}      
> blueocean-commons:${BLUEOCEAN_VERSION}      
> blueocean-config:${BLUEOCEAN_VERSION}       
> blueocean-dashboard:${BLUEOCEAN_VERSION}    
> blueocean-events:${BLUEOCEAN_VERSION}       
> blueocean-git-pipeline:${BLUEOCEAN_VERSION}            
> blueocean-github-pipeline:${BLUEOCEAN_VERSION}         
> blueocean-i18n:${BLUEOCEAN_VERSION}         
> blueocean-jwt:${BLUEOCEAN_VERSION}          
> blueocean-jira:${BLUEOCEAN_VERSION}         
> blueocean-personalization:${BLUEOCEAN_VERSION}          
> blueocean-pipeline-api-impl:${BLUEOCEAN_VERSION}        
> blueocean-pipeline-editor:${BLUEOCEAN_VERSION}          
> blueocean-pipeline-scm-api:${BLUEOCEAN_VERSION}         
> blueocean-rest-impl:${BLUEOCEAN_VERSION}    
> blueocean-rest:${BLUEOCEAN_VERSION}         
> blueocean-web:${BLUEOCEAN_VERSION}          blueocean:${BLUEOCEAN_VERSION}    
>           ant:1.8                          ansicolor:0.5.2                  
> antisamy-markup-formatter:1.5    artifactory:2.15.1               
> authentication-tokens:1.3        azure-credentials:1.6.0          
> azure-vm-agents:0.7.0            branch-api:2.0.19                
> build-name-setter:1.6.9          build-timeout:1.19               
> cloudbees-folder:6.4             conditional-buildstep:1.3.6      
> config-file-provider:2.18        copyartifact:1.39.1              cvs:2.14    
>                      docker-build-publish:1.3.2       docker-workflow:1.15.1  
>          durable-task:1.22                ec2:1.39                         
> embeddable-build-status:1.9      external-monitor-job:1.7         
> ghprb:1.40.0                     git:3.8.0                        
> git-client:2.7.1                 git-server:1.7                   
> github:1.29.0                    github-api:1.90                  
> github-branch-source:2.3.3       github-organization-folder:1.6   
> gitlab-plugin:1.5.5              gradle:1.28                      
> greenballs:1.15                  handlebars:1.1.1                 ivy:1.28    
>                      jackson2-api:2.8.11.3            job-dsl:1.68            
>          jobConfigHistory:2.18            jquery:1.12.4-0                  
> ldap:1.20                        mapdb-api:1.0.9.0                
> marathon:1.6.0                   matrix-auth:2.2                  
> matrix-project:1.13              maven-plugin:3.1.2               
> metrics:3.1.2.11                 monitoring:1.72.0                nant:1.4.3  
>                      node-iterator-api:1.5.0          pam-auth:1.3            
>          parameterized-trigger:2.35.2     pipeline-build-step:2.7          
> pipeline-github-lib:1.0          pipeline-input-step:2.8          
> pipeline-milestone-step:1.3.1    pipeline-model-api:1.2.8         
> pipeline-model-definition:1.2.8   pipeline-model-extensions:1.2.8   
> pipeline-rest-api:2.10           pipeline-stage-step:2.3          
> pipeline-stage-view:2.10         plain-credentials:1.4            
> prometheus:1.2.0                 rebuild:1.28                     
> role-strategy:2.7.0              run-condition:1.0                s3:0.11.0   
>                      saferestart:0.3                  saml:1.0.5              
>          scm-api:2.2.6                    ssh-agent:1.15                   
> ssh-slaves:1.26                  subversion:2.10.5                
> timestamper:1.8.9                translation:1.16                 variant:1.1 
>                      windows-slaves:1.3.1             workflow-aggregator:2.5 
>          workflow-api:2.27                workflow-basic-steps:2.6         
> workflow-cps:2.48                workflow-cps-global-lib:2.9      
> workflow-durable-task-step:2.19   workflow-job:2.18                
> workflow-multibranch:2.17        workflow-scm-step:2.6            
> workflow-step-api:2.14           workflow-support:2.18\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"0b648b2545d81712d56536a42a0a99d3d78008bf6f1f04f22d140c427b645b76\",\"parent\":\"1982429c4258750d3f70dc0f1c563e870725c6d807e9444d9785456d626ef556\",\"created\":\"2018-09-26T17:31:24.2544617Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:59ced817d4cd74453e0658c69f937959d2b4d86cfe15d699cd1fdcf2f6867067 in 
> /usr/share/jenkins/ref//init.groovy.d/mesos-auth.groovy \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"1982429c4258750d3f70dc0f1c563e870725c6d807e9444d9785456d626ef556\",\"parent\":\"35f1271210258c711e78bd483beee0a7fc9c2d4ee12cf78787d7992277c5a957\",\"created\":\"2018-09-26T17:31:23.9384301Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:8ca0529d27d0fa91b7848e39a5d04e55df01746ab31ca6bae1816f062667f8cc in 
> /usr/share/jenkins/ref//nodeMonitors.xml \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"35f1271210258c711e78bd483beee0a7fc9c2d4ee12cf78787d7992277c5a957\",\"parent\":\"12d065bb54a4529a4afddab4e580cb4cb78e509a2c7d6faa7e3967510f783887\",\"created\":\"2018-09-26T17:31:23.609004Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:beed7a659bf7217db04b70fa4220df32e07015c6f20edf4d73b5cab69354542e in 
> /usr/share/jenkins/ref//jenkins.model.JenkinsLocationConfiguration.xml \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"12d065bb54a4529a4afddab4e580cb4cb78e509a2c7d6faa7e3967510f783887\",\"parent\":\"87ea27ae8f877a36014c0eeb3dba7c0a7b29cfc2d779a10bf438dbce8078cc62\",\"created\":\"2018-09-26T17:31:23.3055734Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:46468ed2b6fa66eeea868396b18d952f8cbdd0df6529ec2a4d5782a1acc7ee7a in 
> /usr/share/jenkins/ref//config.xml \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"87ea27ae8f877a36014c0eeb3dba7c0a7b29cfc2d779a10bf438dbce8078cc62\",\"parent\":\"a13b24c2681da6bacf19dd99041ba2921a11d780fd19edc1b6c0d0b982deb730\",\"created\":\"2018-09-26T17:31:23.003904Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:6b54409cf8c3ce4dae538b70b64f8755636613e71806e479c5d8f081224c63e9 in 
> /var/nginx/nginx.conf \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"a13b24c2681da6bacf19dd99041ba2921a11d780fd19edc1b6c0d0b982deb730\",\"parent\":\"39807d50654d8e842f4bf754ef8c4e5b72780dc6403db3e78611e7356c3c2173\",\"created\":\"2018-09-26T17:31:22.6859214Z\",\"container_config\":{\"Cmd\":[\"|11
>  BLUEOCEAN_VERSION=1.5.0 JENKINS_DCOS_HOME=/var/jenkinsdcos_home 
> JENKINS_STAGING=/usr/share/jenkins/ref/ 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274
>  
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz
>  MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8 gid=99 uid=99 
> user=nobody /bin/sh -c mkdir -p /var/log/nginx/jenkins /var/nginx/\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"39807d50654d8e842f4bf754ef8c4e5b72780dc6403db3e78611e7356c3c2173\",\"parent\":\"0bd3eec411704b039cfeb3aec6c6e14882dbc8db68561fe0904548ba708394c5\",\"created\":\"2018-09-26T17:31:21.2086534Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:a4cf73ccc8a0e4b1a7acef249766ce76b31bf76d03f97ac157d6eccfab30d4f5 in 
> /usr/local/jenkins/bin/run.sh \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"0bd3eec411704b039cfeb3aec6c6e14882dbc8db68561fe0904548ba708394c5\",\"parent\":\"f7ede5d3afbd0518be79d105f5ccb6a1f96117291300ba3acc32d9007c71d6a9\",\"created\":\"2018-09-26T17:31:20.9064351Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:3377f08a63084052efa9902be76b1eb669229849b476b52f448697333457e769 in 
> /usr/local/jenkins/bin/dcos-account.sh \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"f7ede5d3afbd0518be79d105f5ccb6a1f96117291300ba3acc32d9007c71d6a9\",\"parent\":\"2f6f3100494a6050ecd28e7e1a647a3fc1f5e9dbde64a6646dc5e8f418bc7397\",\"created\":\"2018-09-26T17:31:20.5594535Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:5814edade36c8c883f19e868796f1ae1d46d6990af813451101abec8196856d4 in 
> /usr/local/jenkins/bin/export-libssl.sh \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"2f6f3100494a6050ecd28e7e1a647a3fc1f5e9dbde64a6646dc5e8f418bc7397\",\"parent\":\"ee31e5ffacfc38c46b9fdad7ecb47ab748d5eb9baf82ea8cf2766df3f9e18cdc\",\"created\":\"2018-09-26T17:31:20.2349213Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:8206c6af7dc8888193958fd9428ba085ae19c8282c26eb05fb9f4c4f46973a4e in 
> /usr/local/jenkins/bin/bootstrap.py \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"ee31e5ffacfc38c46b9fdad7ecb47ab748d5eb9baf82ea8cf2766df3f9e18cdc\",\"parent\":\"9fc63748986386223542f05b4c9685481a303ebb3e30603e174e65121906ea55\",\"created\":\"2018-07-09T20:54:30.984299193Z\",\"container_config\":{\"Cmd\":[\"|11
>  BLUEOCEAN_VERSION=1.5.0 JENKINS_DCOS_HOME=/var/jenkinsdcos_home 
> JENKINS_STAGING=/usr/share/jenkins/ref/ 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274
>  
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz
>  MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8 gid=99 uid=99 
> user=nobody /bin/sh -c echo 'networkaddress.cache.ttl=60' \\u003e\\u003e 
> ${JAVA_HOME}/jre/lib/security/java.security\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"9fc63748986386223542f05b4c9685481a303ebb3e30603e174e65121906ea55\",\"parent\":\"e37610cd26b6212ad9670f101e7d8d70cf108097ead058de50d5d7401cad8b22\",\"created\":\"2018-07-09T20:54:29.524404063Z\",\"container_config\":{\"Cmd\":[\"|11
>  BLUEOCEAN_VERSION=1.5.0 JENKINS_DCOS_HOME=/var/jenkinsdcos_home 
> JENKINS_STAGING=/usr/share/jenkins/ref/ 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274
>  
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz
>  MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8 gid=99 uid=99 
> user=nobody /bin/sh -c mkdir -p \\\"${JENKINS_HOME}\\\" 
> \\\"${JENKINS_FOLDER}/war\\\"\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"e37610cd26b6212ad9670f101e7d8d70cf108097ead058de50d5d7401cad8b22\",\"parent\":\"84f29eb0d8745c0510f8d48c347676ff1283ec4921bb2e3e7f462681d8e62ba3\",\"created\":\"2018-07-09T20:54:28.236876676Z\",\"container_config\":{\"Cmd\":[\"|11
>  BLUEOCEAN_VERSION=1.5.0 JENKINS_DCOS_HOME=/var/jenkinsdcos_home 
> JENKINS_STAGING=/usr/share/jenkins/ref/ 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274
>  
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz
>  MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8 gid=99 uid=99 
> user=nobody /bin/sh -c echo \\\"deb http://ftp.debian.org/debian testing 
> main\\\" \\u003e\\u003e /etc/apt/sources.list   \\u0026\\u0026 apt-get update 
> \\u0026\\u0026 apt-get -t testing install -y git\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"84f29eb0d8745c0510f8d48c347676ff1283ec4921bb2e3e7f462681d8e62ba3\",\"parent\":\"a0d4487b3138fe03804efb8c6aec561dcd75c6dc45d57458b9e46ca1184b49c2\",\"created\":\"2018-07-09T20:54:14.100019856Z\",\"container_config\":{\"Cmd\":[\"|11
>  BLUEOCEAN_VERSION=1.5.0 JENKINS_DCOS_HOME=/var/jenkinsdcos_home 
> JENKINS_STAGING=/usr/share/jenkins/ref/ 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274
>  
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz
>  MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8 gid=99 uid=99 
> user=nobody /bin/sh -c curl -fsSL \\\"$LIBMESOS_DOWNLOAD_URL\\\" -o 
> libmesos-bundle.tar.gz    \\u0026\\u0026 echo \\\"$LIBMESOS_DOWNLOAD_SHA256 
> libmesos-bundle.tar.gz\\\" | sha256sum -c -   \\u0026\\u0026 tar -C / -xzf 
> libmesos-bundle.tar.gz    \\u0026\\u0026 rm libmesos-bundle.tar.gz\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"a0d4487b3138fe03804efb8c6aec561dcd75c6dc45d57458b9e46ca1184b49c2\",\"parent\":\"bfc2e6fd97b4b81249e6ad41a0709d1d62de3c35251e1e07b39a855111c6f465\",\"created\":\"2018-07-09T20:54:00.580952612Z\",\"container_config\":{\"Cmd\":[\"|11
>  BLUEOCEAN_VERSION=1.5.0 JENKINS_DCOS_HOME=/var/jenkinsdcos_home 
> JENKINS_STAGING=/usr/share/jenkins/ref/ 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274
>  
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz
>  MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8 gid=99 uid=99 
> user=nobody /bin/sh -c apt-get update \\u0026\\u0026 apt-get install -y nginx 
> python zip jq\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"bfc2e6fd97b4b81249e6ad41a0709d1d62de3c35251e1e07b39a855111c6f465\",\"parent\":\"c7344d4d0e1cb95c3e531da5c342fc2fb289e4e51334ca2d1b430de241b28722\",\"created\":\"2018-07-09T20:53:46.425927046Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  USER root\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"c7344d4d0e1cb95c3e531da5c342fc2fb289e4e51334ca2d1b430de241b28722\",\"parent\":\"662ff9075f47894530c796a8e9b2fafe7f1bc5be7ec38b35d757d442b6833a84\",\"created\":\"2018-07-09T20:53:46.096470837Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV JENKINS_CSP_OPTS=sandbox; default-src 'none'; img-src 'self'; 
> style-src 'self';\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"662ff9075f47894530c796a8e9b2fafe7f1bc5be7ec38b35d757d442b6833a84\",\"parent\":\"5f2b4cf9791c5f60b455dd4b847028183d61d7d519fc5c6bd1b6fe50ef119e74\",\"created\":\"2018-07-09T20:53:45.797188526Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV 
> COPY_REFERENCE_FILE_LOG=/var/jenkinsdcos_home/copy_reference_file.log\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"5f2b4cf9791c5f60b455dd4b847028183d61d7d519fc5c6bd1b6fe50ef119e74\",\"parent\":\"25792f867e22dae243cd783474ff4eed5d54a323665c33205058d5a6adf545d9\",\"created\":\"2018-07-09T20:53:45.462915577Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV JENKINS_HOME=/var/jenkinsdcos_home\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"25792f867e22dae243cd783474ff4eed5d54a323665c33205058d5a6adf545d9\",\"parent\":\"1ff15242962d34fd623e14d7a02db78036b900bb2e526a74d44fc903477cc9e7\",\"created\":\"2018-07-09T20:53:45.124088811Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG gid=99\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"1ff15242962d34fd623e14d7a02db78036b900bb2e526a74d44fc903477cc9e7\",\"parent\":\"fc1935bf0e7b1a47c7b5947f1ba2c9347472b19f6a5cf4e0553c7c8dd4dac4c2\",\"created\":\"2018-07-09T20:53:44.827537014Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG uid=99\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"fc1935bf0e7b1a47c7b5947f1ba2c9347472b19f6a5cf4e0553c7c8dd4dac4c2\",\"parent\":\"3d5eaaf246c3dd14cb486d1249fc41cdba012693b3d20dafd9e9a395d104f740\",\"created\":\"2018-07-09T20:53:44.458211965Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG user=nobody\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"3d5eaaf246c3dd14cb486d1249fc41cdba012693b3d20dafd9e9a395d104f740\",\"parent\":\"ede8ff5b5cfbe778c731602a3da663b93f3c3304b3a34255412d1631d4b77c18\",\"created\":\"2018-07-09T20:53:44.10755361Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG 
> JENKINS_DCOS_HOME=/var/jenkinsdcos_home\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"ede8ff5b5cfbe778c731602a3da663b93f3c3304b3a34255412d1631d4b77c18\",\"parent\":\"b2579c2af8b8b590584e666fc0a0427e6baa3b46bf9a1ec9b05aa37bbf6fe2fc\",\"created\":\"2018-07-09T20:53:43.757033301Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG 
> STATSD_PLUG_HASH=929d4a6cb3d3ce5f1e03af73075b13687d4879c8\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"b2579c2af8b8b590584e666fc0a0427e6baa3b46bf9a1ec9b05aa37bbf6fe2fc\",\"parent\":\"d12f6a61c0f00cd2eeb401653c4ec8f52f9fc996514741a6af9e5c57a082f3a8\",\"created\":\"2018-07-09T20:53:43.442946812Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG 
> PROMETHEUS_PLUG_HASH=a347bf2c63efe59134c15b8ef83a4a1f627e3b5d\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"d12f6a61c0f00cd2eeb401653c4ec8f52f9fc996514741a6af9e5c57a082f3a8\",\"parent\":\"fef12017cd9254dbbbb938bfadd8a9401241149c9a52c347373395a52a1c4ebe\",\"created\":\"2018-07-09T20:53:43.116440726Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG 
> MESOS_PLUG_HASH=347c1ac133dc0cb6282a0dde820acd5b4eb21133\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"fef12017cd9254dbbbb938bfadd8a9401241149c9a52c347373395a52a1c4ebe\",\"parent\":\"f81de07a754d737714fcaec8c6d6db1656e64d6cca56e347ccebf23776b00617\",\"created\":\"2018-04-24T20:52:04.5174488Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG 
> JENKINS_STAGING=/usr/share/jenkins/ref/\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"f81de07a754d737714fcaec8c6d6db1656e64d6cca56e347ccebf23776b00617\",\"parent\":\"9780d937abc8609fd998fecda4c079d6b097b1cb6a714de993329a2f56548133\",\"created\":\"2018-04-24T20:52:04.1863586Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG BLUEOCEAN_VERSION=1.5.0\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"9780d937abc8609fd998fecda4c079d6b097b1cb6a714de993329a2f56548133\",\"parent\":\"72437e315d169d61ae285cc7cb1fecb5ada9249936e77c39ce28d85e7e6d727d\",\"created\":\"2018-04-24T20:52:03.8152478Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG 
> LIBMESOS_DOWNLOAD_SHA256=bd4a785393f0477da7f012bf9624aa7dd65aa243c94d38ffe94adaa10de30274\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"72437e315d169d61ae285cc7cb1fecb5ada9249936e77c39ce28d85e7e6d727d\",\"parent\":\"9fa0879e36daa2a5a08776124775e11a7fdb51ca2fb19407baa7dedad3ef97a8\",\"created\":\"2018-04-24T20:52:03.4353208Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG 
> LIBMESOS_DOWNLOAD_URL=https://downloads.mesosphere.io/libmesos-bundle/libmesos-bundle-1.11.0.tar.gz\"]},\"throwaway\":true}";
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"9fa0879e36daa2a5a08776124775e11a7fdb51ca2fb19407baa7dedad3ef97a8\",\"parent\":\"764cacaf206bfbeb6b11777e9b65d16ad6350530f559b9f78ee15413548d7749\",\"created\":\"2018-04-24T20:52:03.0719423Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV JENKINS_FOLDER=/usr/share/jenkins\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"764cacaf206bfbeb6b11777e9b65d16ad6350530f559b9f78ee15413548d7749\",\"parent\":\"7f59fe46c09c4aa9f59ab9268e34571a0bbc0cfa3c0ac4e4d8e55fdf1392bbd5\",\"created\":\"2018-04-24T20:52:02.73463Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) WORKDIR /tmp\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"7f59fe46c09c4aa9f59ab9268e34571a0bbc0cfa3c0ac4e4d8e55fdf1392bbd5\",\"parent\":\"35094fea2af3c400c07fc444f7477b90caf1013b87e40696cfa9e57fc0f9c80b\",\"created\":\"2018-04-11T10:05:00.283278344Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:2874a36404a19c4075e62bf579a79bf730d317e628e80b03c676af4509481acc in 
> /usr/local/bin/install-plugins.sh \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"35094fea2af3c400c07fc444f7477b90caf1013b87e40696cfa9e57fc0f9c80b\",\"parent\":\"9d76182ab3259983e8e14d62c9461f4b08404a709f216b805649ac1a448a1fcc\",\"created\":\"2018-04-11T10:04:58.564052111Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:39d6085e6ad132734efabf90a5444f3bc74a21e8bf5a79f4d0176ac18bb98217 in 
> /usr/local/bin/plugins.sh \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"9d76182ab3259983e8e14d62c9461f4b08404a709f216b805649ac1a448a1fcc\",\"parent\":\"fa49692d5ea14814e6efec3af9517b31313a7461065aeb184acdb68d5df23196\",\"created\":\"2018-04-11T10:04:56.647913351Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENTRYPOINT [\\\"/sbin/tini\\\" \\\"--\\\" 
> \\\"/usr/local/bin/jenkins.sh\\\"]\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"fa49692d5ea14814e6efec3af9517b31313a7461065aeb184acdb68d5df23196\",\"parent\":\"afabf13b1f4f211c64b5535617d2ceb53038f76ceb76b74d8c2c0c66f9a5c9a3\",\"created\":\"2018-04-11T10:04:54.736575307Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:dc942ca949bb159f81bbc954773b3491e433d2d3e3ef90bac80ecf48a313c9c9 in 
> /bin/tini \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"afabf13b1f4f211c64b5535617d2ceb53038f76ceb76b74d8c2c0c66f9a5c9a3\",\"parent\":\"64c769f00fe141263cbb93af8dded7de9c06f1c96010adbb22f4dc6acd0decc9\",\"created\":\"2018-04-11T10:04:51.974150657Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:1a73810a97d134925c37b2276c894e0a9c92125cdd8c750aaf8ef15c3c20aa72 in 
> /usr/local/bin/jenkins.sh \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"64c769f00fe141263cbb93af8dded7de9c06f1c96010adbb22f4dc6acd0decc9\",\"parent\":\"0900f664d5ac780bca9e91b18de9f4680eb0eb4842e81cbe26b3a22f3eb8fdec\",\"created\":\"2018-04-11T10:04:50.171056466Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:88dd96a27353c9d476981c3cfc6b39c95983c45083324afa7c8bddb682d91bff in 
> /usr/local/bin/jenkins-support \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"0900f664d5ac780bca9e91b18de9f4680eb0eb4842e81cbe26b3a22f3eb8fdec\",\"parent\":\"d70c19ee5d688e37e2fce67f01fd691c2509d45dd7903f68ede5ca78d1b7bdc4\",\"created\":\"2018-04-11T10:04:48.292041295Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  USER jenkins\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"d70c19ee5d688e37e2fce67f01fd691c2509d45dd7903f68ede5ca78d1b7bdc4\",\"parent\":\"c94d46c5aef23a2d56d2ac621b24a6778dcfbd81e1af03f2940ae91dcd991a20\",\"created\":\"2018-04-11T10:04:46.288406797Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV 
> COPY_REFERENCE_FILE_LOG=/var/jenkins_home/copy_reference_file.log\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"c94d46c5aef23a2d56d2ac621b24a6778dcfbd81e1af03f2940ae91dcd991a20\",\"parent\":\"09e94fdaea35187ca8029b96c2180f04615c8e66a8255dc939f16c9429ba003f\",\"created\":\"2018-04-11T10:04:44.37013921Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  EXPOSE 50000\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"09e94fdaea35187ca8029b96c2180f04615c8e66a8255dc939f16c9429ba003f\",\"parent\":\"3d98aa3161d75b086c38aee654e4612b83b1bbfdea154785537df95ae157ca5a\",\"created\":\"2018-04-11T10:04:42.447771731Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  EXPOSE 8080\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"3d98aa3161d75b086c38aee654e4612b83b1bbfdea154785537df95ae157ca5a\",\"parent\":\"6de02152b7dce054eee77ce934fa5652c2142a8a210060e19872db23d9afdacd\",\"created\":\"2018-04-11T10:04:40.453492565Z\",\"container_config\":{\"Cmd\":[\"|9
>  JENKINS_SHA=079ab885be74ea3dd4d2a57dd804a296752fae861f2d7c379bce06b674ae67ed 
> JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/2.107.2/jenkins-war-2.107.2.war
>  TINI_VERSION=v0.16.1 agent_port=50000 gid=1000 group=jenkins http_port=8080 
> uid=1000 user=jenkins /bin/sh -c chown -R ${user} \\\"$JENKINS_HOME\\\" 
> /usr/share/jenkins/ref\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"6de02152b7dce054eee77ce934fa5652c2142a8a210060e19872db23d9afdacd\",\"parent\":\"c178ed9e80695242e5ae0f6611ddce99a857d3e5a295207bc45d1e680d3c1379\",\"created\":\"2018-04-11T10:04:37.42404848Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV 
> JENKINS_UC_EXPERIMENTAL=https://updates.jenkins.io/experimental\"]},\"throwaway\":true}";
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"c178ed9e80695242e5ae0f6611ddce99a857d3e5a295207bc45d1e680d3c1379\",\"parent\":\"9aed7a6b86d981cfa853eae0e5a716d16be68b4475884e6b275762e8770946c8\",\"created\":\"2018-04-11T10:04:35.309385797Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV JENKINS_UC=https://updates.jenkins.io\"]},\"throwaway\":true}";
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"9aed7a6b86d981cfa853eae0e5a716d16be68b4475884e6b275762e8770946c8\",\"parent\":\"6345f944b3e6d2f6e763b56af436b46d26c5424282ca0d2c57994beb2d5d1707\",\"created\":\"2018-04-11T10:04:33.341878374Z\",\"container_config\":{\"Cmd\":[\"|9
>  JENKINS_SHA=079ab885be74ea3dd4d2a57dd804a296752fae861f2d7c379bce06b674ae67ed 
> JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/2.107.2/jenkins-war-2.107.2.war
>  TINI_VERSION=v0.16.1 agent_port=50000 gid=1000 group=jenkins http_port=8080 
> uid=1000 user=jenkins /bin/sh -c curl -fsSL ${JENKINS_URL} -o 
> /usr/share/jenkins/jenkins.war   \\u0026\\u0026 echo \\\"${JENKINS_SHA}  
> /usr/share/jenkins/jenkins.war\\\" | sha256sum -c -\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"6345f944b3e6d2f6e763b56af436b46d26c5424282ca0d2c57994beb2d5d1707\",\"parent\":\"0b6d17bc569a59dadd8ce806ecf325bc39e0445b5097b004c4c5771d030a754c\",\"created\":\"2018-04-11T10:04:28.72473862Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG 
> JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/2.107.2/jenkins-war-2.107.2.war\"]},\"throwaway\":true}";
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"0b6d17bc569a59dadd8ce806ecf325bc39e0445b5097b004c4c5771d030a754c\",\"parent\":\"14f6f33e1ddfb9196b4840cc1fb6de989a15de625581d7774c3629a4cc57e48d\",\"created\":\"2018-04-11T10:04:26.621369421Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG 
> JENKINS_SHA=2d71b8f87c8417f9303a73d52901a59678ee6c0eefcf7325efed6035ff39372a\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"14f6f33e1ddfb9196b4840cc1fb6de989a15de625581d7774c3629a4cc57e48d\",\"parent\":\"3f780bea9189f56ebd2e363fe471a428bd75a2972e7cfc7dd997633b4a8eb951\",\"created\":\"2018-04-11T10:04:24.515479866Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV JENKINS_VERSION=2.107.2\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"3f780bea9189f56ebd2e363fe471a428bd75a2972e7cfc7dd997633b4a8eb951\",\"parent\":\"8384b8fae6e40ab737b32a849d462b1fedf10b34be86a67ead51536b5e278a90\",\"created\":\"2018-04-11T10:04:22.485876008Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG JENKINS_VERSION\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"8384b8fae6e40ab737b32a849d462b1fedf10b34be86a67ead51536b5e278a90\",\"parent\":\"14e86ed54896e03f91257436134c46b72b2230612de7487e208d09b2409c9366\",\"created\":\"2018-04-11T10:04:20.518174508Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:c84b91c835048a52bb864c1f4662607c56befe3c4b1520b0ea94633103a4554f in 
> /usr/share/jenkins/ref/init.groovy.d/tcp-slave-agent-port.groovy \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"14e86ed54896e03f91257436134c46b72b2230612de7487e208d09b2409c9366\",\"parent\":\"f69098d00b0be8a19c2189ff51d0fd286f3d1bba4b02024f5127e3afc65c241d\",\"created\":\"2018-04-11T10:04:18.593424219Z\",\"container_config\":{\"Cmd\":[\"|7
>  TINI_VERSION=v0.16.1 agent_port=50000 gid=1000 group=jenkins http_port=8080 
> uid=1000 user=jenkins /bin/sh -c curl -fsSL 
> https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static-$(dpkg
>  --print-architecture) -o /sbin/tini   \\u0026\\u0026 curl -fsSL 
> https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static-$(dpkg
>  --print-architecture).asc -o /sbin/tini.asc   \\u0026\\u0026 gpg --import 
> /var/jenkins_home/tini_pub.gpg   \\u0026\\u0026 gpg --verify /sbin/tini.asc   
> \\u0026\\u0026 rm -rf /sbin/tini.asc /root/.gnupg   \\u0026\\u0026 chmod +x 
> /sbin/tini\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"f69098d00b0be8a19c2189ff51d0fd286f3d1bba4b02024f5127e3afc65c241d\",\"parent\":\"8a6f3dcf5ca0ca44988097f598596e70cd0f59d9600c115d65fb35ff330848c2\",\"created\":\"2018-04-11T10:04:13.905006564Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) COPY 
> file:653491cb486e752a4c2b4b407a46ec75646a54eabb597634b25c7c2b82a31424 in 
> /var/jenkins_home/tini_pub.gpg \"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"8a6f3dcf5ca0ca44988097f598596e70cd0f59d9600c115d65fb35ff330848c2\",\"parent\":\"1c0472056a7e929c90a91ff8b93a3e66caad76310b8431a1efe220ad734e066c\",\"created\":\"2018-04-11T10:04:11.747045116Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG TINI_VERSION=v0.16.1\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"1c0472056a7e929c90a91ff8b93a3e66caad76310b8431a1efe220ad734e066c\",\"parent\":\"9e7db4035ee231fa280046b53c0513db0df2c9d49938cc74c7fb195d398ce5fb\",\"created\":\"2018-04-11T10:04:09.646844829Z\",\"container_config\":{\"Cmd\":[\"|6
>  agent_port=50000 gid=1000 group=jenkins http_port=8080 uid=1000 user=jenkins 
> /bin/sh -c mkdir -p /usr/share/jenkins/ref/init.groovy.d\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"9e7db4035ee231fa280046b53c0513db0df2c9d49938cc74c7fb195d398ce5fb\",\"parent\":\"cd5438b31ee369424fea23648dc89429b4cef574734f0933e48516c7ba9caf65\",\"created\":\"2018-04-11T10:04:05.986383436Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  VOLUME [/var/jenkins_home]\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"cd5438b31ee369424fea23648dc89429b4cef574734f0933e48516c7ba9caf65\",\"parent\":\"8e94e7a7be85cbc5b57c4f3e140535e297674e8d30df6e0ed6dbf2128b82935a\",\"created\":\"2018-04-11T10:04:03.98242692Z\",\"container_config\":{\"Cmd\":[\"|6
>  agent_port=50000 gid=1000 group=jenkins http_port=8080 uid=1000 user=jenkins 
> /bin/sh -c groupadd -g ${gid} ${group}     \\u0026\\u0026 useradd -d 
> \\\"$JENKINS_HOME\\\" -u ${uid} -g ${gid} -m -s /bin/bash ${user}\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"8e94e7a7be85cbc5b57c4f3e140535e297674e8d30df6e0ed6dbf2128b82935a\",\"parent\":\"f28491aa4d16c9db8733a4efb3588ee73941a4e3e1cfb9f5f50293f894307e96\",\"created\":\"2018-04-11T10:04:00.815710832Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV JENKINS_SLAVE_AGENT_PORT=50000\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"f28491aa4d16c9db8733a4efb3588ee73941a4e3e1cfb9f5f50293f894307e96\",\"parent\":\"5b04eeff8ce581af83220d1ff6f7d89806ddffa65a231b727f94f88ea19d02f0\",\"created\":\"2018-04-11T10:03:58.893891854Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV JENKINS_HOME=/var/jenkins_home\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"5b04eeff8ce581af83220d1ff6f7d89806ddffa65a231b727f94f88ea19d02f0\",\"parent\":\"b53c255204bc7107ee1d6d118ec9369ff868b049ae612f9927425f187df17b72\",\"created\":\"2018-04-11T10:03:57.021756845Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG agent_port=50000\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"b53c255204bc7107ee1d6d118ec9369ff868b049ae612f9927425f187df17b72\",\"parent\":\"d43650df8b88478fd70464bfdf9812cfcc5c2ae32e753cf62d9c68fe3aacc7bb\",\"created\":\"2018-04-11T10:03:55.096596096Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG http_port=8080\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"d43650df8b88478fd70464bfdf9812cfcc5c2ae32e753cf62d9c68fe3aacc7bb\",\"parent\":\"35011013d34dc72632cd62d92a28a8f789af62553f69feddb4f8f1699b2288c4\",\"created\":\"2018-04-11T10:03:53.140848234Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG gid=1000\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"35011013d34dc72632cd62d92a28a8f789af62553f69feddb4f8f1699b2288c4\",\"parent\":\"d9ae2fc7815c25c54be284aac826ee5fc6506626a9b5e839db1dbff5aed85ec7\",\"created\":\"2018-04-11T10:03:51.085212134Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG uid=1000\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"d9ae2fc7815c25c54be284aac826ee5fc6506626a9b5e839db1dbff5aed85ec7\",\"parent\":\"edaba7f43f101619ec35d84a5362844daa52078110c37ac76913a116b75bb0a7\",\"created\":\"2018-04-11T10:03:49.08677048Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG group=jenkins\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"edaba7f43f101619ec35d84a5362844daa52078110c37ac76913a116b75bb0a7\",\"parent\":\"27a497071bd1dbbda48bb96b8c4390c76f4b894722330e4f58fad50195326761\",\"created\":\"2018-04-11T10:03:47.139089021Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ARG user=jenkins\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"27a497071bd1dbbda48bb96b8c4390c76f4b894722330e4f58fad50195326761\",\"parent\":\"558e2b91047ab320c5fae50f79befa3e641fff2f7e2af49e7cc0dfbecc16635b\",\"created\":\"2018-04-11T10:03:45.06746326Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c apt-get update \\u0026\\u0026 apt-get install -y git curl \\u0026\\u0026 
> rm -rf /var/lib/apt/lists/*\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"558e2b91047ab320c5fae50f79befa3e641fff2f7e2af49e7cc0dfbecc16635b\",\"parent\":\"180253c9de444b27748a3818b60ac46af5979f9a2b8f714fbe8ee9d8403e4835\",\"created\":\"2018-03-19T21:23:43.026367652Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c /var/lib/dpkg/info/ca-certificates-java.postinst configure\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"180253c9de444b27748a3818b60ac46af5979f9a2b8f714fbe8ee9d8403e4835\",\"parent\":\"4443d1ea64bf58fcf407017a70cf91b3d2fc25b535f397f3f8d4cbcc21a8def3\",\"created\":\"2018-03-19T21:23:40.069312316Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c set -ex; \\t\\tif [ ! -d /usr/share/man/man1 ]; then \\t\\tmkdir -p 
> /usr/share/man/man1; \\tfi; \\t\\tapt-get update; \\tapt-get install -y 
> \\t\\topenjdk-8-jdk=\\\"$JAVA_DEBIAN_VERSION\\\" 
> \\t\\tca-certificates-java=\\\"$CA_CERTIFICATES_JAVA_VERSION\\\" \\t; \\trm 
> -rf /var/lib/apt/lists/*; \\t\\t[ \\\"$(readlink -f \\\"$JAVA_HOME\\\")\\\" = 
> \\\"$(docker-java-home)\\\" ]; \\t\\tupdate-alternatives --get-selections | 
> awk -v home=\\\"$(readlink -f \\\"$JAVA_HOME\\\")\\\" 'index($3, home) == 1 { 
> $2 = \\\"manual\\\"; print | \\\"update-alternatives --set-selections\\\" }'; 
> \\tupdate-alternatives --query java | grep -q 'Status: manual'\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"4443d1ea64bf58fcf407017a70cf91b3d2fc25b535f397f3f8d4cbcc21a8def3\",\"parent\":\"ad324fb058ede2aae5c0e928616606c62a4a1cf05fde29bff7a54258ef8df607\",\"created\":\"2018-03-19T21:22:53.380702822Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV 
> CA_CERTIFICATES_JAVA_VERSION=20170531+nmu1\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"ad324fb058ede2aae5c0e928616606c62a4a1cf05fde29bff7a54258ef8df607\",\"parent\":\"7fbcff09cd7a0d880d8a97db3fe60cc283c0eeff7280031e2fab224d604924b3\",\"created\":\"2018-03-19T21:22:53.161529652Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV 
> JAVA_DEBIAN_VERSION=8u162-b12-1~deb9u1\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"7fbcff09cd7a0d880d8a97db3fe60cc283c0eeff7280031e2fab224d604924b3\",\"parent\":\"7cf8101307fa1a243c2fb827fea79335afbd5741cf50082302acca5db55261a0\",\"created\":\"2018-03-19T21:22:52.921597489Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV JAVA_VERSION=8u162\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"7cf8101307fa1a243c2fb827fea79335afbd5741cf50082302acca5db55261a0\",\"parent\":\"a720b859b07e0ada6c73ba160b57de6182c351a951870317963cf2af6fc69d27\",\"created\":\"2018-03-14T11:09:02.54085877Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV JAVA_HOME=/docker-java-home\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"a720b859b07e0ada6c73ba160b57de6182c351a951870317963cf2af6fc69d27\",\"parent\":\"f9ddd3ece1d40d678cbdbf50a022175acd3ee1f58836eb886a2f44b0ec068523\",\"created\":\"2018-03-14T11:09:02.292291489Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c ln -svT \\\"/usr/lib/jvm/java-8-openjdk-$(dpkg --print-architecture)\\\" 
> /docker-java-home\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"f9ddd3ece1d40d678cbdbf50a022175acd3ee1f58836eb886a2f44b0ec068523\",\"parent\":\"b715162a4a7e7b2637f5442c739a99cc20454be35cb453c05ad16d0c1d62cc9b\",\"created\":\"2018-03-14T11:09:01.580163972Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c { \\t\\techo '#!/bin/sh'; \\t\\techo 'set -e'; \\t\\techo; \\t\\techo 
> 'dirname \\\"$(dirname \\\"$(readlink -f \\\"$(which javac || which 
> java)\\\")\\\")\\\"'; \\t} \\u003e /usr/local/bin/docker-java-home 
> \\t\\u0026\\u0026 chmod +x /usr/local/bin/docker-java-home\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"b715162a4a7e7b2637f5442c739a99cc20454be35cb453c05ad16d0c1d62cc9b\",\"parent\":\"800c0f0cafc88aeedbe69b61ad8edf65106dafb4f52b1782de9120b092071cc4\",\"created\":\"2018-03-14T11:09:00.816087216Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  ENV LANG=C.UTF-8\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"800c0f0cafc88aeedbe69b61ad8edf65106dafb4f52b1782de9120b092071cc4\",\"parent\":\"62ccd3d687be9f840b76a54a1e732cba0761f6af13c3c1840a4c534daf293602\",\"created\":\"2018-03-14T11:09:00.593223495Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c apt-get update \\u0026\\u0026 apt-get install -y --no-install-recommends 
> \\t\\tbzip2 \\t\\tunzip \\t\\txz-utils \\t\\u0026\\u0026 rm -rf 
> /var/lib/apt/lists/*\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"62ccd3d687be9f840b76a54a1e732cba0761f6af13c3c1840a4c534daf293602\",\"parent\":\"810dccd4311b51f59ddfbd269bda46dacedec3f27bf217c609e84570d49233be\",\"created\":\"2018-03-13T23:56:55.333999982Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c apt-get update \\u0026\\u0026 apt-get install -y --no-install-recommends 
> \\t\\tbzr \\t\\tgit \\t\\tmercurial \\t\\topenssh-client \\t\\tsubversion 
> \\t\\t\\t\\tprocps \\t\\u0026\\u0026 rm -rf /var/lib/apt/lists/*\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"810dccd4311b51f59ddfbd269bda46dacedec3f27bf217c609e84570d49233be\",\"parent\":\"e373d06b9c7892f565ac0428471923e278834968483972e524a310bf6eb43f67\",\"created\":\"2018-03-13T23:56:22.934435097Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c set -ex; \\tif ! command -v gpg \\u003e /dev/null; then \\t\\tapt-get 
> update; \\t\\tapt-get install -y --no-install-recommends \\t\\t\\tgnupg 
> \\t\\t\\tdirmngr \\t\\t; \\t\\trm -rf /var/lib/apt/lists/*; \\tfi\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"e373d06b9c7892f565ac0428471923e278834968483972e524a310bf6eb43f67\",\"parent\":\"ae4f7e1d7298f3e0bd9e0aabd310d8217afabb81c2b10bd6a9aa20c7c94de182\",\"created\":\"2018-03-13T23:56:19.194216172Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c apt-get update \\u0026\\u0026 apt-get install -y --no-install-recommends 
> \\t\\tca-certificates \\t\\tcurl \\t\\twget \\t\\u0026\\u0026 rm -rf 
> /var/lib/apt/lists/*\"]}}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"ae4f7e1d7298f3e0bd9e0aabd310d8217afabb81c2b10bd6a9aa20c7c94de182\",\"parent\":\"8aabf8f13bdf0feed398c7c8b0ac24db59d60d0d06f9dc6cb1400de4df898324\",\"created\":\"2018-03-13T22:26:49.547884802Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop)  CMD [\\\"bash\\\"]\"]},\"throwaway\":true}"
>       },
>       {
>          "v1Compatibility": 
> "{\"id\":\"8aabf8f13bdf0feed398c7c8b0ac24db59d60d0d06f9dc6cb1400de4df898324\",\"created\":\"2018-03-13T22:26:49.153534342Z\",\"container_config\":{\"Cmd\":[\"/bin/sh
>  -c #(nop) ADD 
> file:b380df301ccb5ca09f0d7cd5697ed402fa55f3e9bc5df2f4d489ba31f28de58a in / 
> \"]}}"
>       }
>    ],
>    "signatures": [
>       {
>          "header": {
>             "jwk": {
>                "crv": "P-256",
>                "kid": 
> "JTGT:L32L:BI2G:TG3A:RLO2:6H6K:OZXC:HFYY:SPZW:QXEZ:XNK3:2KAL",
>                "kty": "EC",
>                "x": "Q3Qr-lNb0qyOiyFBHzF5v4gxgVp_drIszYInemkB464",
>                "y": "oBzQUsRherctDgDVxwOR0zkij_B7GAL9B20PWVtHzfs"
>             },
>             "alg": "ES256"
>          },
>          "signature": 
> "X6BvXE9thNyPHIvyH_0GE1blPxznEcPbILpB5HBvI2339gSA5t4HAE7GMalgKLyThJbjrNjiq_PQqreFMBpqzA",
>          "protected": 
> "eyJmb3JtYXRMZW5ndGgiOjU4ODg5LCJmb3JtYXRUYWlsIjoiQ24wIiwidGltZSI6IjIwMTgtMTAtMTVUMTM6MDI6MjdaIn0"
>       }
>    ]
> }
> {noformat}
> This should not be related: when we try to find the extracted layers on the 
> layers dir, we could only find two:
> {noformat}
> ERROR(130)-22:27:48-root@int-agent89-mwst9:/var/lib/mesos/slave/store/docker/layers
>  # ls -alh | grep 
> 'fb401ed0b4f9de5534c224811d0dca94b876225c31ddc3cbb0993ad2faf32cff\|bb54e3dc4a692004ece424733d0ff7bbfe930bdc65491776e2f409a461e838f1\|2ef4a3efec8e89b04691b207a4fe3fddd2e3d3a2a539f8e7dc8a645773758e1f\|36bfc452a3f13511e6f9c0345ffac82054286eea40b02263c83ea791d00a22ea\|ea550cbe252ca3ca06771b0e837d1f7cc61c50404f7f1920ed5bc6cc816d8a0a\|c4c140687ce95f2d23202b7efaa543ef7d064b226864fb4a0ae68bef283e074f\|2f04614030c91b184503348484780b62bda952a2905cc1fb035c5a6f371ca239\|a0ad27b653be7a9400d9e46784f897097cf24f157bfc3fb647e49c360b7c12c1\|f9f80b9791fb4dd2e525de37e33e0b730809bed2b2edb7898b802d3fde3d9c08\|0b648b2545d81712d56536a42a0a99d3d78008bf6f1f04f22d140c427b645b76\|1982429c4258750d3f70dc0f1c563e870725c6d807e9444d9785456d626ef556\|35f1271210258c711e78bd483beee0a7fc9c2d4ee12cf78787d7992277c5a957\|12d065bb54a4529a4afddab4e580cb4cb78e509a2c7d6faa7e3967510f783887\|87ea27ae8f877a36014c0eeb3dba7c0a7b29cfc2d779a10bf438dbce8078cc62\|a13b24c2681da6bacf19dd99041ba2921a11d780fd19edc1b6c0d0b982deb730\|39807d50654d8e842f4bf754ef8c4e5b72780dc6403db3e78611e7356c3c2173\|0bd3eec411704b039cfeb3aec6c6e14882dbc8db68561fe0904548ba708394c5\|f7ede5d3afbd0518be79d105f5ccb6a1f96117291300ba3acc32d9007c71d6a9\|2f6f3100494a6050ecd28e7e1a647a3fc1f5e9dbde64a6646dc5e8f418bc7397\|ee31e5ffacfc38c46b9fdad7ecb47ab748d5eb9baf82ea8cf2766df3f9e18cdc\|9fc63748986386223542f05b4c9685481a303ebb3e30603e174e65121906ea55\|e37610cd26b6212ad9670f101e7d8d70cf108097ead058de50d5d7401cad8b22\|84f29eb0d8745c0510f8d48c347676ff1283ec4921bb2e3e7f462681d8e62ba3\|a0d4487b3138fe03804efb8c6aec561dcd75c6dc45d57458b9e46ca1184b49c2\|bfc2e6fd97b4b81249e6ad41a0709d1d62de3c35251e1e07b39a855111c6f465\|c7344d4d0e1cb95c3e531da5c342fc2fb289e4e51334ca2d1b430de241b28722\|662ff9075f47894530c796a8e9b2fafe7f1bc5be7ec38b35d757d442b6833a84\|5f2b4cf9791c5f60b455dd4b847028183d61d7d519fc5c6bd1b6fe50ef119e74\|25792f867e22dae243cd783474ff4eed5d54a323665c33205058d5a6adf545d9\|1ff15242962d34fd623e14d7a02db78036b900bb2e526a74d44fc903477cc9e7\|fc1935bf0e7b1a47c7b5947f1ba2c9347472b19f6a5cf4e0553c7c8dd4dac4c2\|3d5eaaf246c3dd14cb486d1249fc41cdba012693b3d20dafd9e9a395d104f740\|ede8ff5b5cfbe778c731602a3da663b93f3c3304b3a34255412d1631d4b77c18\|b2579c2af8b8b590584e666fc0a0427e6baa3b46bf9a1ec9b05aa37bbf6fe2fc\|d12f6a61c0f00cd2eeb401653c4ec8f52f9fc996514741a6af9e5c57a082f3a8\|fef12017cd9254dbbbb938bfadd8a9401241149c9a52c347373395a52a1c4ebe\|f81de07a754d737714fcaec8c6d6db1656e64d6cca56e347ccebf23776b00617\|9780d937abc8609fd998fecda4c079d6b097b1cb6a714de993329a2f56548133\|72437e315d169d61ae285cc7cb1fecb5ada9249936e77c39ce28d85e7e6d727d\|9fa0879e36daa2a5a08776124775e11a7fdb51ca2fb19407baa7dedad3ef97a8\|764cacaf206bfbeb6b11777e9b65d16ad6350530f559b9f78ee15413548d7749\|7f59fe46c09c4aa9f59ab9268e34571a0bbc0cfa3c0ac4e4d8e55fdf1392bbd5\|35094fea2af3c400c07fc444f7477b90caf1013b87e40696cfa9e57fc0f9c80b\|9d76182ab3259983e8e14d62c9461f4b08404a709f216b805649ac1a448a1fcc\|fa49692d5ea14814e6efec3af9517b31313a7461065aeb184acdb68d5df23196\|afabf13b1f4f211c64b5535617d2ceb53038f76ceb76b74d8c2c0c66f9a5c9a3\|64c769f00fe141263cbb93af8dded7de9c06f1c96010adbb22f4dc6acd0decc9\|0900f664d5ac780bca9e91b18de9f4680eb0eb4842e81cbe26b3a22f3eb8fdec\|d70c19ee5d688e37e2fce67f01fd691c2509d45dd7903f68ede5ca78d1b7bdc4\|c94d46c5aef23a2d56d2ac621b24a6778dcfbd81e1af03f2940ae91dcd991a20\|09e94fdaea35187ca8029b96c2180f04615c8e66a8255dc939f16c9429ba003f\|3d98aa3161d75b086c38aee654e4612b83b1bbfdea154785537df95ae157ca5a\|6de02152b7dce054eee77ce934fa5652c2142a8a210060e19872db23d9afdacd\|c178ed9e80695242e5ae0f6611ddce99a857d3e5a295207bc45d1e680d3c1379\|9aed7a6b86d981cfa853eae0e5a716d16be68b4475884e6b275762e8770946c8\|6345f944b3e6d2f6e763b56af436b46d26c5424282ca0d2c57994beb2d5d1707\|0b6d17bc569a59dadd8ce806ecf325bc39e0445b5097b004c4c5771d030a754c\|14f6f33e1ddfb9196b4840cc1fb6de989a15de625581d7774c3629a4cc57e48d\|3f780bea9189f56ebd2e363fe471a428bd75a2972e7cfc7dd997633b4a8eb951\|8384b8fae6e40ab737b32a849d462b1fedf10b34be86a67ead51536b5e278a90\|14e86ed54896e03f91257436134c46b72b2230612de7487e208d09b2409c9366\|f69098d00b0be8a19c2189ff51d0fd286f3d1bba4b02024f5127e3afc65c241d\|8a6f3dcf5ca0ca44988097f598596e70cd0f59d9600c115d65fb35ff330848c2\|1c0472056a7e929c90a91ff8b93a3e66caad76310b8431a1efe220ad734e066c\|9e7db4035ee231fa280046b53c0513db0df2c9d49938cc74c7fb195d398ce5fb\|cd5438b31ee369424fea23648dc89429b4cef574734f0933e48516c7ba9caf65\|8e94e7a7be85cbc5b57c4f3e140535e297674e8d30df6e0ed6dbf2128b82935a\|f28491aa4d16c9db8733a4efb3588ee73941a4e3e1cfb9f5f50293f894307e96\|5b04eeff8ce581af83220d1ff6f7d89806ddffa65a231b727f94f88ea19d02f0\|b53c255204bc7107ee1d6d118ec9369ff868b049ae612f9927425f187df17b72\|d43650df8b88478fd70464bfdf9812cfcc5c2ae32e753cf62d9c68fe3aacc7bb\|35011013d34dc72632cd62d92a28a8f789af62553f69feddb4f8f1699b2288c4\|d9ae2fc7815c25c54be284aac826ee5fc6506626a9b5e839db1dbff5aed85ec7\|edaba7f43f101619ec35d84a5362844daa52078110c37ac76913a116b75bb0a7\|27a497071bd1dbbda48bb96b8c4390c76f4b894722330e4f58fad50195326761\|558e2b91047ab320c5fae50f79befa3e641fff2f7e2af49e7cc0dfbecc16635b\|180253c9de444b27748a3818b60ac46af5979f9a2b8f714fbe8ee9d8403e4835\|4443d1ea64bf58fcf407017a70cf91b3d2fc25b535f397f3f8d4cbcc21a8def3\|ad324fb058ede2aae5c0e928616606c62a4a1cf05fde29bff7a54258ef8df607\|7fbcff09cd7a0d880d8a97db3fe60cc283c0eeff7280031e2fab224d604924b3\|7cf8101307fa1a243c2fb827fea79335afbd5741cf50082302acca5db55261a0\|a720b859b07e0ada6c73ba160b57de6182c351a951870317963cf2af6fc69d27\|f9ddd3ece1d40d678cbdbf50a022175acd3ee1f58836eb886a2f44b0ec068523\|b715162a4a7e7b2637f5442c739a99cc20454be35cb453c05ad16d0c1d62cc9b\|800c0f0cafc88aeedbe69b61ad8edf65106dafb4f52b1782de9120b092071cc4\|62ccd3d687be9f840b76a54a1e732cba0761f6af13c3c1840a4c534daf293602\|810dccd4311b51f59ddfbd269bda46dacedec3f27bf217c609e84570d49233be\|e373d06b9c7892f565ac0428471923e278834968483972e524a310bf6eb43f67\|ae4f7e1d7298f3e0bd9e0aabd310d8217afabb81c2b10bd6a9aa20c7c94de182\|8aabf8f13bdf0feed398c7c8b0ac24db59d60d0d06f9dc6cb1400de4df898324'
> drwxr-xr-x.   3 root root  40 Oct 15 10:23 
> 8aabf8f13bdf0feed398c7c8b0ac24db59d60d0d06f9dc6cb1400de4df898324
> drwxr-xr-x.   3 root root  40 Oct 15 10:23 
> ae4f7e1d7298f3e0bd9e0aabd310d8217afabb81c2b10bd6a9aa20c7c94de182
> {noformat}
> These two are base layers that were downloaded earlier from other images. We 
> still need to figure out why there is one layer fetch not finished. (no curl 
> process and tar process running stuck at background)



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to