# Run REPL
docker run -it arturolang/arturo
# Run a script
docker run -v $(pwd):/workspace arturolang/arturo script.art
# Run inline code
docker run arturolang/arturo -e "print 'Hello, World!'"| Tag | Size | Description |
|---|---|---|
latest, mini |
~ 9 MB | Mini build (default) |
full |
~ 230 MB | Full build with high-precision math & GUI support |
nightly |
~ 9 MB | Nightly mini build |
nightly-full |
~ 23O MB | Nightly full build |
Note
Not sure which variant to use? See the Build Variants documentation for details on mini vs full. Hint: most likely you want need anything other than the default/mini build 😉
Caution
Tag naming clarification: In Arturo's context, "latest" typically refers to nightly builds. However, following Docker Hub conventions, the :latest tag here points to the stable mini variant (our recommended default). For nightly builds, use the :nightly or :nightly-full tags explicitly.
docker run -it arturolang/arturodocker run -v $(pwd):/workspace arturolang/arturo script.artdocker run arturolang/arturo -e "print 'Hello from Docker!'"docker run -it arturolang/arturo:full# Mini nightly
docker run -it arturolang/arturo:nightly
# Full nightly
docker run -it arturolang/arturo:nightly-fullWant to build and test the images locally? That's actually quite straightforward! :)
# Mini (stable)
docker build -f Dockerfile-stable.mini -t arturo:mini .
# Full (stable)
docker build -f Dockerfile-stable -t arturo:full .
# Mini (nightly)
docker build -f Dockerfile-latest.mini -t arturo:nightly .
# Full (nightly)
docker build -f Dockerfile-latest -t arturo:nightly-full .MIT License
Copyright (c) 2019-2026 Yanis Zafirópulos (aka Dr.Kameleon)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.