Skip to main content

No project description provided

Project description

quayside

Docker is awesome. And a very handy use case of Docker is that it allows to wrap commands that are somewhat difficult to set up in a container that comes with all the dependencies pre-configured. This approach however, comes with the downside that calling Docker is usually a bit more complicated that just calling a local command.

This is where quayside comes in. The goal of this app is to provide a simple wrapper for a limited but very repetitive use case.

Example usage

An example of a tool, that is offered as a container is sslyze.

A common call would look like this:

docker run --rm -v "$(pwd):/data/" nablac0d3/sslyze:5.0.0 www.google.com --json_out /data/result.json

To do the same via quayside we need to define sslyze in the quayside configuration. Quayside is searching for its configuration at the following locations:

  • ./quayside.yaml
  • ~/.quayside.yaml
sslyze:
  container: nablac0d3/sslyze:5.0.0
  cwd: /data/
  mapped_arguments:
    cwd:
      - "--json_out"
      - "--targets_in"
      - "--cert"
      - "--key"
      - "--keyform"
      - "--pass"

Now we can call sslyze like this:

quayside sslyze --json_out=result.json www.google.com

The current working directory is automatically mounted at /data/ and paths that are passed to one of the mapped arguments are interpreted relative to that folder.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

quayside-0.1.post1-py3-none-any.whl (5.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page