An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# **cosmodrome** - Image Pipeline




license


issues


**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.