Use with Docker Download¶ You don't have to pull the image first. You also can skip this step. Docker HubGitHub Container Registry Bash1docker pull chillibits/spice Bash1docker pull ghcr.io/spicelang/spice Use¶ Linux - Docker HubLinux - GHCRWindows - Docker HubWindows - GHCR Bash1docker run --rm -it -v $(pwd):/spice/out chillibits/spice Bash1docker run --rm -it -v $(pwd):/spice/out ghcr.io/spicelang/spice Bash1docker run --rm -it -v ${pwd}:/spice/out chillibits/spice Bash1docker run --rm -it -v ${pwd}:/spice/out ghcr.io/spicelang/spice Customize¶ Custom output path¶ You can use another output path by replacing $(pwd)/${pwd} with a custom path. Example Bash1docker run --rm -it -v ./project:/spice/out chillibits/spice