diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2018-12-13 06:13:04 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2018-12-13 06:13:04 +0100 |
commit | 493ce5439af6a008ff170f4bca0ee7031e32231b (patch) | |
tree | 3b0b42878bbdfa64b27c3d34435cfdb41c53d546 /win | |
parent | 9c3d5c48694db1018d50aa85acad434f47e5ed0b (diff) | |
download | biomedisa-master.tar.gz biomedisa-master.tar.bz2 biomedisa-master.tar.xz biomedisa-master.zip |
Windows port (unsuccessful as the external part does not running on Windows due to multiple reasons)HEADmaster
Diffstat (limited to 'win')
-rw-r--r-- | win/prepare.bat | 7 | ||||
-rw-r--r-- | win/run.bat | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/win/prepare.bat b/win/prepare.bat new file mode 100644 index 0000000..a4000b9 --- /dev/null +++ b/win/prepare.bat @@ -0,0 +1,7 @@ +REM Enable Shared Drivers in Docker Configuration
+REM Local driver does not work on windows, volumes should be specified inside services
+REM The path C:\Users\... should look like:
+REM BIOMEDISA_HOST_SRC_PATH=/C/Users/csa/biomedisa
+cd ..
+docker-compose -p biomedisa -f docker-compose.yml -f docker-compose.win.yml build
+docker-compose -p biomedisa -f docker-compose.yml -f docker-compose.win.yml run --rm django /run-bootstrap.sh
diff --git a/win/run.bat b/win/run.bat new file mode 100644 index 0000000..60a3b28 --- /dev/null +++ b/win/run.bat @@ -0,0 +1,2 @@ +cd ..
+docker-compose -p biomedisa -f docker-compose.yml -f docker-compose.cpu.yml up
|