mubdi / Simulation-Docker-Files

Docker Files for Astrophysical Fluid Simulations for the UofT Astro-Hydro-Code Seminar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Astrophysical Simulation Dockerfiles

Docker files for astrophysical fluid simulations for the University of Toronto Astro-Hydro-Code Seminar.

Building Instructions

To build a docker image from this repo, cd into your chosen directory, and run

docker build -t <<IMAGENAME>> . 

Running Instructions

To run a docker image from this repo, run the following:

docker run -it <<IMAGENAME>> bash

which will start bash

To run with a host directory mounted in the image:

docker run -it -v /path/to/host/directory:/path/to/image/directory <<IMAGENAME>> bash

To run with a port opened between the host and the image (for a jupyter notebook, for instance):

docker run -it -p <<hostport>>:<<imageport>> <<IMAGENAME>> bash

About

Docker Files for Astrophysical Fluid Simulations for the UofT Astro-Hydro-Code Seminar


Languages

Language:Dockerfile 93.5%Language:Shell 6.5%