Sign inSign up

miklosbagi/ovh-venom

By miklosbagi

Updated over 2 years ago

Venom docker, incl beta & unstable releases

Image
0

732

miklosbagi/ovh-venom repository overview

OVH Venom

This docker repo holds images for OVH Venom, including betas that are not officially released (but available via tags).

  • The latest is the latest stable release
  • latest-beta is what it looks like

Docker run

docker run \
  --platform linux/amd64 \
  --mount type=bind,source=$(pwd)/tests/venom-0,target=/workdir/tests \
  --mount type=bind,source=$(pwd)/results/venom-0,target=/workdir/results \
  miklosbagi/ovh-venom:latest-beta

Docker compose

  venom-0:
    platform: linux/amd64
    image: miklosbagi/ovh-venom:latest-beta
    volumes:
      - ./tests/venom-0:/workdir/tests
      - ./results/venom-0:/workdir/results

Intel users may ditch that platform: linux/amd64 with no impact. This line is added for apple silicon compatibility ((Dockerfile hardcodes amd64)[https://github.com/ovh/venom/blob/master/Dockerfile#L6], so this will run via rosetta for now.)

If you want to depend a next service on the outcome of tests, you can add something like:

    depends_on:
      venom:
        condition: service_completed_successfully

Working example in the github repo that have tests for these images.

Tag summary

Content type

Image

Digest

sha256:8a699fc92

Size

23.7 MB

Last updated

over 2 years ago

docker pull miklosbagi/ovh-venom