From 493ce5439af6a008ff170f4bca0ee7031e32231b Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Thu, 13 Dec 2018 06:13:04 +0100 Subject: Windows port (unsuccessful as the external part does not running on Windows due to multiple reasons) --- docker-compose.win.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docker-compose.win.yml (limited to 'docker-compose.win.yml') diff --git a/docker-compose.win.yml b/docker-compose.win.yml new file mode 100644 index 0000000..f5b673c --- /dev/null +++ b/docker-compose.win.yml @@ -0,0 +1,23 @@ +version: '2.4' + +services: + redis: + ports: + - 127.0.0.1:6379:6379 + mysql: + ports: + - 127.0.0.1:3306:3306 + biomedisa: + runtime: "" + build: + context: ./biomedisa + args: + TENSORFLOW_DEVICE: cpu + TENSORFLOW_APPEND: + volumes: + - ${BIOMEDISA_HOST_SRC_PATH}:/biomedisa + - ${BIOMEDISA_HOST_SRC_PATH}:${BIOMEDISA_HOST_SRC_PATH} + django: + volumes: + - ${BIOMEDISA_HOST_SRC_PATH}:/biomedisa + - ${BIOMEDISA_HOST_SRC_PATH}:${BIOMEDISA_HOST_SRC_PATH} -- cgit v1.2.1