Created
April 9, 2017 05:49
-
-
Save lucj/8e8c7357f44b5f867ed753f77010eb79 to your computer and use it in GitHub Desktop.
docker-event-nginx-container
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
$ curl --unix-socket /var/run/docker.sock http://localhost/events | |
{ | |
"status": "create", | |
"id": "277786a066994b4d842dc097c4544e2ddcf50ffe0b6aa8352812ca0aadec4078", | |
"from": "nginx", | |
"Type": "container", | |
"Action": "create", | |
"Actor": { | |
"ID": "277786a066994b4d842dc097c4544e2ddcf50ffe0b6aa8352812ca0aadec4078", | |
"Attributes": { | |
"image": "nginx", | |
"name": "hardcore_carson" | |
} | |
}, | |
"time": 1491683503, | |
"timeNano": 1491683503003280100 | |
} | |
{ | |
"Type": "network", | |
"Action": "connect", | |
"Actor": { | |
"ID": "18147ed9f4510d0149a0810916434df19b3d03f30e17ac4effcbcc1d2371ba97", | |
"Attributes": { | |
"container": "277786a066994b4d842dc097c4544e2ddcf50ffe0b6aa8352812ca0aadec4078", | |
"name": "bridge", | |
"type": "bridge" | |
} | |
}, | |
"time": 1491683503, | |
"timeNano": 1491683503061245700 | |
} | |
{ | |
"status": "start", | |
"id": "277786a066994b4d842dc097c4544e2ddcf50ffe0b6aa8352812ca0aadec4078", | |
"from": "nginx", | |
"Type": "container", | |
"Action": "start", | |
"Actor": { | |
"ID": "277786a066994b4d842dc097c4544e2ddcf50ffe0b6aa8352812ca0aadec4078", | |
"Attributes": { | |
"image": "nginx", | |
"name": "hardcore_carson" | |
} | |
}, | |
"time": 1491683503, | |
"timeNano": 1491683503389984300 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment