{"id":21666910,"url":"https://github.com/tubbo/avm","last_synced_at":"2026-05-10T14:46:41.458Z","repository":{"id":139665412,"uuid":"111236520","full_name":"tubbo/avm","owner":"tubbo","description":"* version manager using docker","archived":false,"fork":false,"pushed_at":"2023-12-15T08:17:44.000Z","size":44,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-20T06:47:52.466Z","etag":null,"topics":["shell","version-manager"],"latest_commit_sha":null,"homepage":"https://tubbo.github.com/avm","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tubbo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-18T20:22:56.000Z","updated_at":"2019-03-14T15:57:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"9fdd3b1b-f555-4083-9180-fffaf6b28ac9","html_url":"https://github.com/tubbo/avm","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/tubbo/avm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tubbo%2Favm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tubbo%2Favm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tubbo%2Favm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tubbo%2Favm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tubbo","download_url":"https://codeload.github.com/tubbo/avm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tubbo%2Favm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32860226,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"ssl_error","status_checked_at":"2026-05-10T13:40:02.145Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["shell","version-manager"],"created_at":"2024-11-25T11:30:29.365Z","updated_at":"2026-05-10T14:46:41.441Z","avatar_url":"https://github.com/tubbo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# avm: anything version manager\n\nA version manager for any backend service, like databases or cache\nservers, that you can run locally for development purposes. Inspired by\n[esvm][], it uses [Docker][] to run your backend services in containers,\nand downloads/updates images automatically if they're not already installed.\n\n## Installation\n\nInstall with Homebrew:\n\n    brew install https://raw.githubusercontent.com/tubbo/avm/master/Formula/avm.rb\n\nIf you don't have Homebrew, you can install it with this one-liner:\n\n    curl -o- -L https://tubbo.github.com/avm/install.sh | bash\n\nOr, manually:\n\n    git clone https://github.com/tubbo/avm.git\n    cd avm\n    make install\n\n## Usage\n\nAfter installing, run the `avm` command to start a service in the\nforeground. For example, if you wanted to install and run Elasticsearch\nv1.5.2:\n\n    avm elasticsearch 1.5.2\n\nBy default, `docker run` is run with the `--rm --interactive --tty` switches\napplied. This ensures the container is removed after it runs so it doesn't take up\nextra space on your machine, keeps the `STDIN` pipe open, and allocates\na pseudo-TTY for running commands within the container, if necessary.\n\n### Service Descriptors\n\nFor most services, this won't be suitable because the port of the\nservice won't be properly mapped. For this, you'll need a **service\ndescriptor file** located at `~/.avm/$SERVICE_NAME` to pass options to\nthe `docker run` command when your service's container is started. This\ncan be anything from a simple port mapping to complex configuration and\nfirst-run commands. In the elasticsearch realm, we might want to have a\nservice descriptor file at `~/.avm/elasticsearch` that looks something\nlike the following:\n\n    -p 9200:9200 -p 9300:9300 -e \"discovery.type=single-node\"\n\nThis string of text gets passed verbatim to `docker run`.\n\n## Development\n\nRun automated tests:\n\n    make test\n\nVerify signature:\n\n    make verify\n\nContributors should issue a pull request on GitHub after verifying tests\npass.\n\n## License\n\nCopyright 2017-2019 Tom Scott\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n[esvm]: https://github.com/elastic/esvm\n[Docker]: https://www.docker.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftubbo%2Favm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftubbo%2Favm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftubbo%2Favm/lists"}