-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add a user to not run as root! * Add an example1.m file for simple testing * Add ignore files * Minor fix for README to not mention Bio-Formats
- Loading branch information
Showing
5 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.*un~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.*un~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
# Octave | ||
|
||
Lightweight development environment for testing the Bio-Formats Octave package | ||
Lightweight development environment for testing Octave scripts. | ||
|
||
## Usage | ||
|
||
``` | ||
$ docker run --rm -it -v $(pwd):/source openmicroscopy/octave | ||
$ docker run --rm -it openmicroscopy/octave -h # Get octave help | ||
$ docker run --rm -it openmicroscopy/octave example1.m arg1 # Run the example file | ||
$ docker run --rm -it -v $(pwd):/source openmicroscopy/octave /source/myfile.m | ||
``` | ||
|
||
Mount your local source folder to the container and run it inside the container. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#! /bin/octave -qf | ||
printf ("%s", program_name ()); | ||
arg_list = argv (); | ||
for i = 1:nargin | ||
printf (" %s", arg_list{i}); | ||
endfor | ||
printf ("\n"); |