Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created March 2, 2019 02:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/e3ac4cb00412d2065a16f3d45473ed51 to your computer and use it in GitHub Desktop.
Save ryantm/e3ac4cb00412d2065a16f3d45473ed51 to your computer and use it in GitHub Desktop.
/nix/store/6iwpqk1z8rvrdx37sd07srck5062w3vr-docker-compose-1.23.2
├── bin
│   └── docker-compose
├── lib
│   └── python3.7
│   └── site-packages
│   ├── compose
│   │   ├── bundle.py
│   │   ├── cli
│   │   │   ├── colors.py
│   │   │   ├── command.py
│   │   │   ├── docker_client.py
│   │   │   ├── docopt_command.py
│   │   │   ├── errors.py
│   │   │   ├── formatter.py
│   │   │   ├── __init__.py
│   │   │   ├── log_printer.py
│   │   │   ├── main.py
│   │   │   ├── __pycache__
│   │   │   │   ├── colors.cpython-37.pyc
│   │   │   │   ├── command.cpython-37.pyc
│   │   │   │   ├── docker_client.cpython-37.pyc
│   │   │   │   ├── docopt_command.cpython-37.pyc
│   │   │   │   ├── errors.cpython-37.pyc
│   │   │   │   ├── formatter.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── log_printer.cpython-37.pyc
│   │   │   │   ├── main.cpython-37.pyc
│   │   │   │   ├── signals.cpython-37.pyc
│   │   │   │   ├── utils.cpython-37.pyc
│   │   │   │   └── verbose_proxy.cpython-37.pyc
│   │   │   ├── signals.py
│   │   │   ├── utils.py
│   │   │   └── verbose_proxy.py
│   │   ├── config
│   │   │   ├── config.py
│   │   │   ├── config_schema_v1.json
│   │   │   ├── config_schema_v2.0.json
│   │   │   ├── config_schema_v2.1.json
│   │   │   ├── config_schema_v2.2.json
│   │   │   ├── config_schema_v2.3.json
│   │   │   ├── config_schema_v2.4.json
│   │   │   ├── config_schema_v3.0.json
│   │   │   ├── config_schema_v3.1.json
│   │   │   ├── config_schema_v3.2.json
│   │   │   ├── config_schema_v3.3.json
│   │   │   ├── config_schema_v3.4.json
│   │   │   ├── config_schema_v3.5.json
│   │   │   ├── config_schema_v3.6.json
│   │   │   ├── config_schema_v3.7.json
│   │   │   ├── environment.py
│   │   │   ├── errors.py
│   │   │   ├── __init__.py
│   │   │   ├── interpolation.py
│   │   │   ├── __pycache__
│   │   │   │   ├── config.cpython-37.pyc
│   │   │   │   ├── environment.cpython-37.pyc
│   │   │   │   ├── errors.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── interpolation.cpython-37.pyc
│   │   │   │   ├── serialize.cpython-37.pyc
│   │   │   │   ├── sort_services.cpython-37.pyc
│   │   │   │   ├── types.cpython-37.pyc
│   │   │   │   └── validation.cpython-37.pyc
│   │   │   ├── serialize.py
│   │   │   ├── sort_services.py
│   │   │   ├── types.py
│   │   │   └── validation.py
│   │   ├── const.py
│   │   ├── container.py
│   │   ├── errors.py
│   │   ├── GITSHA
│   │   ├── __init__.py
│   │   ├── __main__.py
│   │   ├── network.py
│   │   ├── parallel.py
│   │   ├── progress_stream.py
│   │   ├── project.py
│   │   ├── __pycache__
│   │   │   ├── bundle.cpython-37.pyc
│   │   │   ├── const.cpython-37.pyc
│   │   │   ├── container.cpython-37.pyc
│   │   │   ├── errors.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── network.cpython-37.pyc
│   │   │   ├── parallel.cpython-37.pyc
│   │   │   ├── progress_stream.cpython-37.pyc
│   │   │   ├── project.cpython-37.pyc
│   │   │   ├── service.cpython-37.pyc
│   │   │   ├── state.cpython-37.pyc
│   │   │   ├── timeparse.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   ├── version.cpython-37.pyc
│   │   │   └── volume.cpython-37.pyc
│   │   ├── service.py
│   │   ├── state.py
│   │   ├── timeparse.py
│   │   ├── utils.py
│   │   ├── version.py
│   │   └── volume.py
│   └── docker_compose-1.23.2.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── pbr.json
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── share
└── bash-completion
└── completions
└── docker-compose
15 directories, 100 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment