Skip to content

Commit

Permalink
Merge pull request #12 from ins-amu/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Ziaeemehr authored Feb 24, 2025
2 parents 3c31b51 + fc2be36 commit 0db2771
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: build & push Docker image to ghcr

on:
push:
branches:
- main # Runs when pushing to develop branch
# branches:
# - main # Runs when pushing to develop branch
tags:
- v* # Runs when pushing tags starting with 'v'

Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[![Test](https://github.com/ins-amu/vbi/actions/workflows/tests.yml/badge.svg)](https://github.com/ins-amu/vbi/actions/workflows/tests.yml)
[![Documentation Status](https://readthedocs.org/projects/vbi/badge/?version=latest)](https://vbi.readthedocs.io/latest/)
[![DOI](https://zenodo.org/badge/681090816.svg)](https://doi.org/10.5281/zenodo.14795543)


[![Docker Build](https://github.com/ins-amu/vbi/actions/workflows/docker-image.yml/badge.svg)](https://github.com/ins-amu/vbi/actions/workflows/docker-image.yml)

# Virtual Brain Inference (VBI)
<p align="center">
Expand All @@ -27,10 +26,19 @@
To use the Docker image, you can pull it from the GitHub Container Registry and run it as follows:

```bash
# Get it without building anything locally
# without GPU
docker run --rm -it ghcr.io/ins-amu/vbi:main

# with GPU
docker run --gpus all --rm -it ghcr.io/ins-amu/vbi:main


# or build it locally:
docker build -t vbi-project . # build
docker run --gpus all -it vbi-project # use with gpu

# Output something like this:
# Output is expected to be something like this:

Dependency Check

Expand Down

0 comments on commit 0db2771

Please sign in to comment.