blob: 975726b20d54679630e2ef6e9d1a871fdc2dcad9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"
|