aboutsummaryrefslogtreecommitdiffhomepage
path: root/QC-dev-environment/docker-compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'QC-dev-environment/docker-compose.yaml')
-rw-r--r--QC-dev-environment/docker-compose.yaml21
1 files changed, 21 insertions, 0 deletions
diff --git a/QC-dev-environment/docker-compose.yaml b/QC-dev-environment/docker-compose.yaml
new file mode 100644
index 0000000..975726b
--- /dev/null
+++ b/QC-dev-environment/docker-compose.yaml
@@ -0,0 +1,21 @@
+# Docker compose file for easy volume mounting and running of the container
+
+services:
+ cortex-dev:
+ image: cortex-dev:latest
+ build:
+ context: .
+ dockerfile: Dockerfile
+ tags:
+ - cortex-dev:latest
+
+ volumes:
+ - ./filesystems:/qc-fs
+ - ./mount:/mnt
+
+ environment:
+ # Edit this to your needs. This should be just the file name, not the path.
+ - UPDATE_FILE=2.0.1.bin.gz
+
+ privileged: true
+ entrypoint: /bin/bash -c "while true; do sleep 1; done" \ No newline at end of file