Sign inSign up

openeuler/volo

Sponsored OSS

By openeuler

Updated 1 day ago

Image
0

120

openeuler/volo repository overview

Quick reference

Volo | openEuler

Current Volo docker images are built on the openEuler. This repository is free to use and exempted from per-user rate limits.

Volo is a high-performance and strong-extensibility Rust RPC framework that helps developers build microservices.

The volo-cli command line tool provides the ability to generate default project layout and manage the idls used. This image provides the volo command line tool.

Learn more on CloudWeGo.

The tag of each volo docker image is consist of the version of volo and the version of basic image. The details are as follows

TagCurrentlyArchitectures
0.12.2-oe2403sp4Volo 0.12.2 on openEuler 24.03-LTS-SP4amd64, arm64

Usage

In this usage, users can select the corresponding {Tag} based on their requirements.

  • Pull the openeuler/volo image from docker

    docker pull openeuler/volo:{Tag}
    
  • Check the installed volo version

    docker run --rm openeuler/volo:{Tag} volo --version
    
  • Initialize a Volo project

    Place idl/volo_example.thrift in the current directory and run:

    docker run --rm -v "$(pwd)":/workspace -w /workspace openeuler/volo:{Tag} \
        volo init volo-example idl/volo_example.thrift
    

    The generated project is written to the current directory.

  • Start a long-running container for exploration

    docker run -d --name my-volo openeuler/volo:{Tag} sleep infinity
    
  • View the container logs

    docker logs -f my-volo
    
  • To get an interactive shell

    docker exec -it my-volo bash
    

Question and answering

If you have any questions or want to use some special features, please submit an issue or a pull request on openeuler-docker-images.

Tag summary

Content type

Image

Digest

sha256:2846f345d

Size

349.4 MB

Last updated

1 day ago

docker pull openeuler/volo