https://github.com/robolaunch/cosmodrome
Pipeline that builds and pushes images used by robolaunch Robot Operator
https://github.com/robolaunch/cosmodrome
Last synced: 5 months ago
JSON representation
Pipeline that builds and pushes images used by robolaunch Robot Operator
- Host: GitHub
- URL: https://github.com/robolaunch/cosmodrome
- Owner: robolaunch
- License: apache-2.0
- Created: 2022-12-27T08:47:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T09:34:29.000Z (over 1 year ago)
- Last Synced: 2024-10-25T07:16:03.368Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 1.12 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
#
**cosmodrome** - Image Pipeline
**cosmodrome** is an image pipeline that produces images.
## Quick Start
### Installation
Install with Go:
```bash
go install github.com/robolaunch/cosmodrome@latest
```
Install binary:
```bash
wget https://github.com/robolaunch/cosmodrome/releases/download/v0.1.0-alpha.1/cosmodrome-amd64
chmod +x cosmodrome-amd64
mv cosmodrome-amd64 /usr/local/bin/cosmodrome
cosmodrome --help
```
### Usage
For example, building Freecad, run:
```bash
cosmodrome launch --config pipelines/freecad.yaml
```
To enable pushes, add your personal access token to your environment first:
```bash
# for Docker Hub
export REGISTRY_PAT=
docker login -u -p $REGISTRY_PAT
```
## Contributing
Please see [this guide](./CONTRIBUTING) if you want to contribute.