https://github.com/insightsengineering/julia-images
Insights Engineering Julia Images
https://github.com/insightsengineering/julia-images
docker images julia reproducibility
Last synced: about 1 month ago
JSON representation
Insights Engineering Julia Images
- Host: GitHub
- URL: https://github.com/insightsengineering/julia-images
- Owner: insightsengineering
- Created: 2024-03-20T13:44:41.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-11-10T19:47:33.000Z (7 months ago)
- Last Synced: 2025-11-10T21:21:30.138Z (7 months ago)
- Topics: docker, images, julia, reproducibility
- Language: Shell
- Homepage: https://insightsengineering.github.io/julia-images/
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# julia-images
To run the image with Julia and Visual Studio Code installed, execute:
```shell
docker run -d -p 8081:8081 -v $(pwd):/root/code ghcr.io/insightsengineering/julia-vscode:1.10-bookworm
```
You can access Visual Studio code in your browser at `localhost:8081` and your current working directory will be available in `/root/code` in the container.
To stop the container, run:
```shell
docker stop $(docker ps | grep '0.0.0.0:8081' | awk '{print $1}')
```
To run the image with just Julia installed, execute:
```shell
docker run -it --entrypoint julia ghcr.io/insightsengineering/julia:1.10-bookworm -e 'println("Hello, world!"); for x in ARGS; println(x); end' foo bar
```
To run an interactive Julia session, execute:
```shell
docker run -it ghcr.io/insightsengineering/julia:1.10-bookworm
```
To run a shell in the Julia container, execute:
```shell
$ docker run -it --entrypoint /bin/bash ghcr.io/insightsengineering/julia:1.10-bookworm
root@4913b172f781:/# julia --version
julia version 1.10.2
root@4913b172f781:/# quarto --version
1.4.551
```