Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed Mar 26, 2024
1 parent 38c4b4d commit 3d110fe
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ on:
Release tags follow the `YYYY.MM.DD` format.
This must be specified if you want to upload artifacts to the release.
required: false
default: ""
default: ''

jobs:
normalize-inputs:
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# julia-images

To run the image with Julia and Visual Studio Code installed, execute:

```shell
docker run -p 8081:8081 ghcr.io/insightsengineering/julia-vscode:1.10-bookworm
```

You can access Visual Studio code in your browser at `localhost:8081`

To stop the container, run:

```shell
docker stop $(docker ps | grep '0.0.0.0:8081' | awk '{print $1}')
```

0 comments on commit 3d110fe

Please sign in to comment.