Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am rhyst on github.
  • I am rhyst (https://keybase.io/rhyst) on keybase.
  • I have a public key whose fingerprint is EBD0 A5C3 BECC 1F03 176D F075 4960 C793 0214 394D

To claim this, I am signing this object:

@rhyst
rhyst / docker-composer.py
Last active January 7, 2019 14:20
A script for constructing docker compose files out of complicated interdependent services
#!/usr/bin/python3
import sys
import os
import re
import yaml
import pprint
import operator
from functools import reduce
from pathlib import Path
from dotenv import load_dotenv