-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (24 loc) · 1.19 KB
/
Copy path.env.example
File metadata and controls
26 lines (24 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copy this file to .env and adjust to your machine.
# .env is gitignored — never commit it.
# The directory on your Mac where your BIDS datasets live.
# The backend will mount this at /host-data inside the container, read-only.
# You can type paths from this directory directly into the import form —
# e.g. /Users/you/Documents/bids-examples/ds001 — and they will work.
#
# Set this to any ancestor directory that covers all your datasets.
# ~/Documents works for most people. A dedicated folder is cleaner:
# mkdir ~/neuravian-data # then point datasets here with symlinks or copies
HOST_DATASETS_DIR=/Users/yourname/Documents
# Your Mac user's UID and GID. Required for pipelines that set
# run_as_host_user: true (currently: FastSurfer). Docker Compose reads these
# from the shell environment at 'docker compose up' time. The easiest way to
# set them permanently is to add the two lines below to your ~/.zshrc:
#
# export HOST_UID=$(id -u)
# export HOST_GID=$(id -g)
#
# Then restart your terminal (or run: source ~/.zshrc) and re-run
# 'docker compose up -d'. Without these, FastSurfer will fail with a
# "running as root" error (HOST_UID defaults to 0 in docker-compose.yml).
HOST_UID=
HOST_GID=