The official Volo docker image.
Maintained by: openEuler CloudNative SIG.
Where to get help: openEuler CloudNative SIG, 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
| Tag | Currently | Architectures |
|---|---|---|
| 0.12.2-oe2403sp4 | Volo 0.12.2 on openEuler 24.03-LTS-SP4 | amd64, arm64 |
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
If you have any questions or want to use some special features, please submit an issue or a pull request on openeuler-docker-images.
Content type
Image
Digest
sha256:2846f345d…
Size
349.4 MB
Last updated
1 day ago
docker pull openeuler/volo