sourcegraph / srclib

srclib is a polyglot code analysis library, built for hackability. It consists of language analysis toolchains (currently for Go and Java, with Python, JavaScript, and Ruby in beta) with a common output format, and a CLI tool for running the analysis.
https://srclib.org
Other
942 stars 62 forks source link

docker: Use --rm for run #224

Closed keegancsmith closed 8 years ago

keegancsmith commented 8 years ago

What we run is ephemeral, but docker by default leaves the container around even once it has exited. This is causing issues in production since we have 10s of thousands instances in docker ps -a, which seems to be causing perf issues in docker.

pararthshah commented 8 years ago

LGTM