{"id":13582468,"url":"https://github.com/kelda/blimp","last_synced_at":"2025-07-22T17:33:40.918Z","repository":{"id":56186362,"uuid":"271399375","full_name":"kelda/blimp","owner":"kelda","description":"Blimp: Develop with Docker Compose in the cloud","archived":false,"fork":false,"pushed_at":"2022-08-22T17:52:33.000Z","size":6063,"stargazers_count":103,"open_issues_count":3,"forks_count":12,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-08T10:52:08.995Z","etag":null,"topics":["developer-tools","development-environment","devops","docker","docker-compose","golang"],"latest_commit_sha":null,"homepage":"https://kelda.io/blimp","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kelda.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-06-10T22:33:56.000Z","updated_at":"2025-01-15T21:53:03.000Z","dependencies_parsed_at":"2022-08-15T14:20:19.813Z","dependency_job_id":null,"html_url":"https://github.com/kelda/blimp","commit_stats":null,"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"purl":"pkg:github/kelda/blimp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kelda%2Fblimp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kelda%2Fblimp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kelda%2Fblimp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kelda%2Fblimp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kelda","download_url":"https://codeload.github.com/kelda/blimp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kelda%2Fblimp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266538675,"owners_count":23944872,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["developer-tools","development-environment","devops","docker","docker-compose","golang"],"created_at":"2024-08-01T15:02:44.806Z","updated_at":"2025-07-22T17:33:40.869Z","avatar_url":"https://github.com/kelda.png","language":"Go","readme":"# Blimp CLI\n\n[![Build Status](https://circleci.com/gh/kelda/blimp.svg?style=svg)](https://circleci.com/gh/kelda/blimp)\n[![Go Report Card](https://goreportcard.com/badge/github.com/kelda/blimp?)](https://goreportcard.com/report/github.com/kelda/blimp)\n[![Slack](https://kelda.io/img/slack-badge.svg)](http://slack.kelda.io)\n\nThis repository contains the CLI for [Blimp](https://kelda.io/blimp).\nBlimp lets you develop in the cloud, reducing CPU and RAM usage on your laptop.\nIt supports the same\n[configuration](https://docs.docker.com/compose/compose-file) and\n[workflows](https://devcenter.heroku.com/articles/local-development-with-docker-compose)\nas [Docker Compose](https://docs.docker.com/compose/).\n\nThis repository is also used for issue tracking and feature requests.\n\n## How it Works\n\n* The containers run in a remote Kubernetes cluster. [compose-go](https://github.com/compose-spec/compose-go) parses\n  compose files into a standard format, which is then deployed by the Blimp\n  Cloud.\n* [Localhost network tunnels](https://docs.docker.com/compose/compose-file/#ports) are implemented over [gRPC streams](https://github.com/kelda/blimp/blob/master/_proto/blimp/node/v0/controller.proto#L10).\n* [Bind volumes](https://docs.docker.com/compose/compose-file/#volumes) are\n  implemented with [Syncthing](https://syncthing.net/). The Syncthing\n  connection is also tunnelled over the gRPC stream.\n\n## Installation\n\n`blimp` has been tested on Mac, Linux, and Windows WSL.\n\n```shell\ncurl -fsSL 'https://raw.githubusercontent.com/kelda/blimp/master/scripts/install.sh' | sh\n```\n\n## Example\n\n```\n# Download the example.\ngit clone https://github.com/kelda/node-todo\ncd node-todo\n\n# Pick a username.\nmkdir -p ~/.blimp \u0026\u0026 echo 'username: your_user' \u003e ~/.blimp/auth.yaml\n\n# Boot the docker-compose.yml.\nblimp up\n\n# You can now interact with your containers as if they were running locally.\n# Edit files.\nvim app/routes.js\n\n# Access the app.\ncurl localhost:8080\n```\n\n## Documentation\n\n* [Design principles](https://kelda.io/blimp/docs/#/home?id=design-principles) (be\n  light, require zero setup, and require zero workflow changes)\n* [Release notes](https://kelda.io/blimp/docs/release-notes/) for past Blimp versions.\n* [Basic usage analytics](https://kelda.io/blimp/docs/#/security?id=what-analytics-does-the-blimp-cli-collect)\n  are collected by default ([you can opt out](https://kelda.io/blimp/docs/#/security?id=what-analytics-does-the-blimp-cli-collect)).\n* [The Kelda Slack](https://slack.kelda.io) is the best way to reach the maintainers.\n\n## Contributing\n\nContributions are very much welcome!  Check out the [contribution\nguide](CONTRIBUTING.md) to get started.\n","funding_links":[],"categories":["Go"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkelda%2Fblimp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkelda%2Fblimp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkelda%2Fblimp/lists"}