A brief description of what your project does and why it’s useful.
git clone https://github.com/nime6/FestoKI.git
cd FestoKIInstall Docker Engine (https://docs.docker.com/engine/install/)
- On Linux it might be necessary to install QEMU binaries (https://docs.docker.com/build/building/multi-platform/) with:
docker run --privileged --rm tonistiigi/binfmt --install allBuild Docker image from the Dockerfile.
docker build -t festo_image .
# -t: Is used to tag the Docker image with a name and optionally a tag in the format name:tagRun container from image in an interactive shell
docker run -it --rm --name festo_container festo_image /bin/bash
# -it: Runs container in interactive mode, with /bin/bash in an interactive shell
# --rm: Ensures that the container is removed as soon as it stops running.