{"id":32517304,"url":"https://github.com/mrmurphy/apollo","last_synced_at":"2026-07-02T18:32:00.435Z","repository":{"id":10995574,"uuid":"13317271","full_name":"mrmurphy/Apollo","owner":"mrmurphy","description":"A tool for getting chummy with Docker on OS X","archived":false,"fork":false,"pushed_at":"2013-12-03T20:08:53.000Z","size":840,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-28T02:55:13.247Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrmurphy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-10-04T05:41:23.000Z","updated_at":"2013-12-03T20:08:56.000Z","dependencies_parsed_at":"2022-09-10T15:51:37.511Z","dependency_job_id":null,"html_url":"https://github.com/mrmurphy/Apollo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mrmurphy/Apollo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmurphy%2FApollo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmurphy%2FApollo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmurphy%2FApollo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmurphy%2FApollo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrmurphy","download_url":"https://codeload.github.com/mrmurphy/Apollo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrmurphy%2FApollo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35059112,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-02T02:00:06.368Z","response_time":173,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-10-28T02:54:52.533Z","updated_at":"2026-07-02T18:32:00.430Z","avatar_url":"https://github.com/mrmurphy.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Apollo\nA tool to make docker on as easy to use as possible on OS X.\n\nApollo tries to minimize the difficulty possible when developing on a Virtual Machine.\n\nHere's a taste of how it works:\n```\n# Specify the Vagrantfile to be used by vagrant commands:\nexport VAGRANT_CWD=\"path/to/Vagrantfile\"\n\n# Launch the VM, and mount its filesystem over sshfs.\napollo up\n\n# Run an interactive shell on the VM\napollo i\n\n# Navigate to the mounted directory:\ncd ~/apollo\n\n# Run a command on the VM without launching an interactive shell\n# Apollo runs the command on the remote machine in the directory\n# that corresponds to the location of the shell in the mounted\n# directory.\n# For example, `pwd` from within ~/apollo/foobar on the host will\n# return \"/home/vagrant/foobar\" on the VM\napollo ls -l ~\n```\n\n---\n\nApollo is under heavy development. Currently being used and deveoped simultaneously in production at [Space Monkey Inc.](http://www.spacemonkey.com) by Murphy Randle.\n\nExpect a cleaner codebase and further documentation in the future.\n\n---\n\n# Installation\n## Building\nIn order to build the executable, a *go* development environment is needed. Here are instructions for getting started with *golang*: [http://golang.org/doc/install](http://golang.org/doc/install)\n\nAlso, [homebrew](http://brew.sh/) is recommended for installing the operational dependencies.\n\nAfter golang is installed and set up, Apollo can be installed like this:\n\n```\ngo get github.com/murphyrandle/apollo\ncd $GOROOT/src/github.com/murphyrandle/apollo\ngo build\n```\n\n## Dependencies\n**Apollo** Is meant to be run on OS X and connecto to a [Virtualbox](https://www.virtualbox.org/) image managed by [Vagrant](http://www.vagrantup.com/)\n\nThe following are runtime dependencies:\n\n- Vagrant\n- Virtualbox\n- sshfs\n- ssh-copy-id\n\n```\ngo get github.com/murphyrandle/apollo\ncd $GOROOT/src/github.com/murphyrandle/apollo\nbrew bundle\n# Read and follow the instructions in Brewfile!!\n```\n\n# Notes on usage\n\n - Apollo assumes that the `VAGRANT_CWD` environment variable is set, so that `vagrant ssh` can be called from any directory.\n - At the current time, the directory for the VM mount: `~/apollo` is hard-coded into the source and must be created by hand before running Apollo. This will be configured by a flag or ENV variable in future releases.\n - Apollo has only been tested on Mac OS X. Windows is not supported (unless you want to send a pull request!), and Linux is untested.\n - Apollo *should* work with any VM back-end supported by Vagrant. \n\n# License\n\nThe MIT License (MIT)\n\nCopyright (c) 2013 (Murphy) Jackson Randle\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmurphy%2Fapollo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrmurphy%2Fapollo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrmurphy%2Fapollo/lists"}