Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 837 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 837 Bytes

SCANDAN Software

This repository hosts several software packages which have been packaged into Docker images.

Image Pull Command TRE Compatible? Notes
Freesurfer docker pull ghcr.io/smi/freesurfer:latest 🚧 Requires a license file
FSL docker pull ghcr.io/smi/fsl:latest 🚧

Usage notes

Running graphical applications via Docker

XSOCK=/tmp/.X11-unix
XAUTH=/tmp/.docker.xauth
xauth nlist "$DISPLAY" | sed -e 's/^..../ffff/' | xauth -f "$XAUTH" nmerge -

docker run --rm -it \
    -e USER="$USER" \
    -e DISPLAY="$DISPLAY" \
    -e XAUTHORITY="$XAUTH" \
    -v $XSOCK:$XSOCK \
    -v $XAUTH:$XAUTH \
    <image-name>