Use with Docker Download¶ You don't have to pull the image first. You also can skip this step. Docker Hub GitHub Container Registry Bash1docker pull chillibits/spice Bash1docker pull ghcr.io/spicelang/spice Use¶ Docker Hub GitHub Container Registry Bash1 2 3 4# Linux/macOS docker run --rm -it -v $(pwd):/spice/out chillibits/spice # Windows docker run --rm -it -v ${pwd}:/spice/out chillibits/spice Bash1 2 3 4# Linux docker run --rm -it -v $(pwd):/spice/out ghcr.io/spicelang/spice # Windows docker 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 Installation Docker