Basically, Docker lets you package an application
into a container that can be distributed as images to
run on other platforms. For example, let's say you have
an application that works on your computer, but not on
the server you want to eventually run it on. Docker
solves that. It lets you package an application and
the environment it needs to run on into a bundle that
can then be run anywhere.
run docker pull ghcr.io/frc971/bos/orin:latest.
This will pull a docker image for you to use on your computer.
To run the docker container on your computer,
run the following commands in the terminal:
docker run --privileged --network host --name orin -it ghcr.io/frc971/bos/orin:latest
docker exec -it orin /bin/bashThis will run the docker container on your computer within a
contained environment that simulates an ORIN.