Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created November 25, 2019 17:28
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/5259f490748aae1ebea0c6bbe71f9d72 to your computer and use it in GitHub Desktop.
Save ryantm/5259f490748aae1ebea0c6bbe71f9d72 to your computer and use it in GitHub Desktop.
/nix/store/hx670yc35aii38wg345arjgrnn7wsd8f-docker-compose-1.25.0
├── 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.25.0.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── share
├── bash-completion
│   └── completions
│   └── docker-compose
└── zsh-completion
└── zsh
└── site-functions
└── _docker-compose
18 directories, 100 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment