Jupiter
GitHub
EN
EN
  • Jupiter
  • License
  • Installation
    • Linux
    • macOS
      • Option 1: App Image
      • Option 2: Build From Source
    • Windows
      • Option 1: App Image
      • Option 2: Build From Source
    • Docker Image
  • User Guide
    • GUI Mode
    • CLI Mode
  • Assembler
    • Directives
    • Ecalls
    • Instructions
  • External Resources
    • RISC-V Instruction Set Manual
    • RISC-V Green Card (Cambridge)
    • RISC-V Green Card (Berkeley)
    • The RISC-V Reader
Powered by GitBook
On this page
  • Docker Installation
  • Using Jupiter with Docker

Was this helpful?

  1. Installation

Docker Image

PreviousOption 2: Build From SourceNextGUI Mode

Last updated 5 years ago

Was this helpful?

Docker Installation

You need to install Docker first, please follow the installation guide in the link below.

Using Jupiter with Docker

Assuming that you are in some directory, ~/Desktop for example, and inside that directory you have one file called fibonacci.s, you can use the following command to simulate that RISC-V assembly program:

docker run -it --rm -v $PWD:/riscv -w /riscv andrescv/jupiter fibonacci.s

Alternatively, you can specify the version of the Jupiter simulator by using a docker tag:

# use v3.1
docker run -it --rm -v $PWD:/riscv -w /riscv andrescv/jupiter:3.1 fibonacci.s

Visit the link below to see available tags

https://docs.docker.com/install/docs.docker.com
https://docs.docker.com/install/
Docker Hub
https://hub.docker.com/r/andrescv/jupiter
Logo