https://github.com/ome/octave-docker
Dockerfile to build an Octave container
https://github.com/ome/octave-docker
docker octave
Last synced: 3 months ago
JSON representation
Dockerfile to build an Octave container
- Host: GitHub
- URL: https://github.com/ome/octave-docker
- Owner: ome
- Created: 2016-02-12T09:24:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-03-13T09:16:37.000Z (about 2 years ago)
- Last Synced: 2025-10-01T18:35:27.761Z (8 months ago)
- Topics: docker, octave
- Language: Dockerfile
- Size: 15.6 KB
- Stars: 12
- Watchers: 5
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Octave
[](https://github.com/ome/octave-docker/actions)
Lightweight development environment for testing Octave scripts.
## Usage
```
$ docker run --rm -it openmicroscopy/octave # Octave shell
$ docker run --rm -it --entrypoint bash openmicroscopy/octave # Bash shell
$ docker run --rm openmicroscopy/octave -h # Get octave help
$ docker run --rm openmicroscopy/octave example1.m arg1 # Run the example file
$ docker run --rm -v $(pwd):/source openmicroscopy/octave /source/myfile.m
```
Mount your local source folder to the container and run it inside the container.