Skip to content

AEADataEditor/docker-julia-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker image basic Julia image

Purpose

Many Julia replication packages have dependencies, which sometimes include the specific version of Julia (in particular versions prior to 1.0). This Docker image is meant to isolate and stabilize that environment, and should be portable across multiple operating system, as long as Docker is available.

Build

Adjust the needed packages

See the 0setup.jl file, and update accordingly.

WARNING: not all packages might build, depending on whether the Julia base image has the relevant libraries. You might want to change Julia base image, or switch to another image from rocker.

Setup info

Set the TAG and IMAGEID accordingly.

TAG=v$(date +%F)
MYIMG=aer-9999-8888
MYHUBID=aeadataeditor

Build the image

docker build  . -t $MYIMG:$TAG

or if using the newer build system

DOCKER_BUILDKIT=1 docker build . -t $MYIMG:$TAG

Publish the image

The resulting docker image can be uploaded to Docker Hub, if desired.

docker push $MYHUBID/${MYIMG}:$TAG

Using the image

If using a pre-built image on Docker Hub or the one you just created:

docker run -it --rm $MYHUBID/${MYIMG}:$TAG

Somewhat more sophisticated, if you are in a project directory (for instance, the replication package you just downloaded), you can access it directly within the image as follows:

cd /path/to/project
docker run -it --rm -v $(pwd)/subdir:/code -w /code $MYHUBID/${MYIMG}:$TAG

You can now start to run code interactively, for testing.

To run code directly, use

docker run -it -v $(pwd):/code \
     -w /code \
     $MYHUBID/${MYIMG}:$TAG julia mainmulti.jl

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •