diff options
Diffstat (limited to 'CorOS-dev-environment/CorOS-build-env/docker-compose.yaml')
-rw-r--r-- | CorOS-dev-environment/CorOS-build-env/docker-compose.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml b/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml new file mode 100644 index 0000000..6abd5da --- /dev/null +++ b/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml @@ -0,0 +1,21 @@ +# Docker compose file for easy volume mounting and running of the container + +services: + coros-dev: + image: opencortex/coros-dev:latest + build: + context: ../ + dockerfile: CorOS-build-env/Dockerfile + tags: + - opencortex/coros-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=verify.bin.gz + + privileged: true + entrypoint: /bin/bash -c "while true; do sleep 1; done"
\ No newline at end of file |