Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1.1 KB

File metadata and controls

25 lines (18 loc) · 1.1 KB

ipta-docker

A repository of Dockerfiles for IPTA projects.

ipta-gwa

The ipta-gwa image (available as ipta/ipta-gwa:latest at Docker Hub) is intended for use gravitational wave analysis. It includes enterprise and all of its dependencies in the base conda environment. It also includes includes PTMCMCSampler and enterprise_extensions. and has a footprint of about 3.5GB. This image is built on the continuumio/miniconda image and installs autotools and gnu compilers. The image begins in the /home/ipta-gwa/ directory, but only has a root user.

Quickstart for local use

  • Install Docker
  • Start Docker.
  • Pull the repository and run bash shell in a new container (as root)
docker pull ipta/ipta-gwa:latest
docker run -it ipta/ipta-gwa:latest /bin/bash
  • Don't forget to remove your containers (docker ps -a; docker rm ...) once you're done.