Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 1.24 KB

DEVELOPMENT.md

File metadata and controls

56 lines (44 loc) · 1.24 KB

Alafia AI CONN Toolbox for ARM64

Introduction

This is a Dockerfile project to build a Matlab image with CONN and SPM pre-installed for use on Alafia AI's ARM64 workstation.

Usage

Build

docker build . -t alafia-conn-toolbox

Run with VNC

docker run \
  --interactive \
  --tty \
  --rm \
  --platform linux/amd64 \
  -p 5901:5901 \
  -p 6080:6080 \
  --ulimit nofile=10000:10000 \
  --shm-size=512M \
  alafia-conn-toolbox \
    -vnc

Navigate to http://localhost:6080 in browser

Run with Shell

docker run \
  --interactive \
  --tty \
  --rm \
  --platform linux/amd64 \
  --ulimit nofile=10000:10000 \
  --shm-size=512M
  alafia-conn-toolbox \
    -shell

Resources