Image Export Pipeline is a Dagster pipeline to export radiological images from a PACS (by using ADIT). With the help of ADIT Client the images also get anonymized (by anonymizing sensible data in the DICOM header).
- Both development and production uses Docker Compose to setup the Dagster server
dagster_home_dev
resp.dagster_home_prod
folder in the workspace is mounted asDAGSTER_HOME
folder. Every data output by the pipelines is stored in those folders.- Copy
example.env
to.env
and adjust the variables accordingly. - Artifacts are stored according to
ARTIFACTS_DIR
. IfARTIFACTS_DIR
is not set then the files are stored in theDAGSTER_HOME
folder understorage
. - A relative
ARTIFACTS_DIR
path is stored relative toDAGSTER_HOME
which isdagster_home_dev
folder in development anddagster_home_prod
folder in production. - Production uses Nginx for basic auth and SSL encryption.
- Execute
./nginx/setup_production.sh
to setup SSL certificates and basic auth.
- Execute
- Attach the virtual environment with
poetry shell
and then start the stack withinv compose-up
. - Forward port
3500
in development resp.3600
in production to Dagster UI in VS Code ports tab. - Alternatively (for testing purposes), run a single job from command line, e.g.
python ./scripts/materialize_assets.py -d ./artifacts/ 2023-01-01
.