#docker-image #cloudflare #storage #tags #oci #parameters #uploading

oci-r2-uploader

Rust library for converting and uploading Docker images to Cloudflare R2 Storage with customizable image and tag parameters

3 releases

0.1.2 Apr 23, 2023
0.1.1 Apr 23, 2023
0.1.0 Apr 23, 2023

#7 in #uploading

Download history 84/week @ 2024-02-16 25/week @ 2024-02-23 9/week @ 2024-03-01 40/week @ 2024-03-29 12/week @ 2024-04-05

52 downloads per month

MIT license

11KB
175 lines

oci-r2-uploader

Rust library for converting and uploading Docker images to Cloudflare R2 Storage with customizable image and tag parameters.

Features

  • Convert Docker images to OCI format
  • Upload Docker images to Cloudflare R2 Storage
  • Customizable image and tag parameters

Installation

Add the following dependency to your Cargo.toml file:

[dependencies]
oci-r2-uploader = "0.1.2"

Prerequisites

  • Install skopeo on your system. Follow the official installation instructions for your specific platform. (if you are using macOS, you can install it with brew install skopeo)

  • You need to set the following environment variables:

    export CLOUDFLARE_ACCOUNT_ID=account_id
    export R2_ACCESS_KEY_ID=access_key
    export R2_SECRET_ACCESS_KEY=secret_key
    export R2_BUCKET=my_bucket
    

Usage

use oci_r2_uploader;

#[tokio::main]
async fn main() {
    let image = String::from("my_image");
    let tag = String::from("my_tag");

    if let Err(e) = oci_r2_uploader::run(image, tag).await {
    }
}

License

This project is licensed under the MIT License.

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/my-feature)
  3. Commit your changes (git commit -am 'Add my feature')
  4. Push to the branch (git push origin feature/my-feature)
  5. Create a new Pull Request

Dependencies

~14–27MB
~412K SLoC