Skip to content

Instantly share code, notes, and snippets.

View Zhaoyilunnn's full-sized avatar
🎯
Focusing

Yilun Zhao Zhaoyilunnn

🎯
Focusing
View GitHub Profile
@Zhaoyilunnn
Zhaoyilunnn / docker_descendants.py
Created October 24, 2022 14:23 — forked from altaurog/docker_descendants.py
Python3 script to find descendants of one or more docker images
#!/usr/bin/python3
#
# usage: python3 docker_descendants.py <image_id> ...
import sys
from subprocess import check_output
def main(images):
image_ids = set(images)
@Zhaoyilunnn
Zhaoyilunnn / amazon.md
Created July 1, 2022 11:05 — forked from terabyte/amazon.md
Amazon's Build System

Prologue

I wrote this answer on stackexchange, here: https://stackoverflow.com/posts/12597919/

It was wrongly deleted for containing "proprietary information" years later. I think that's bullshit so I am posting it here. Come at me.

The Question

Amazon is a SOA system with 100s of services (or so says Amazon Chief Technology Officer Werner Vogels). How do they handle build and release?