diff options
author | Thomas Van Iseghem <[email protected]> | 2024-06-17 08:37:55 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-06-17 08:37:55 +0200 |
commit | 226a1233fa0257b1393ccdd7e2cf2a12d244a778 (patch) | |
tree | b07c12ff2e4b56b0a46c26732ff9067a756cb670 /CorOS-dev-environment/CorOS-build-env/docker-compose.yaml | |
parent | 3ba4308938bcab5a23ae96b0809895ef28d47720 (diff) | |
parent | 1b0601a8be5deecf3dd27eff6213ac7359d9761c (diff) | |
download | OpenCortex-226a1233fa0257b1393ccdd7e2cf2a12d244a778.tar.gz OpenCortex-226a1233fa0257b1393ccdd7e2cf2a12d244a778.zip |
Add M1 Docker Docs
Diffstat (limited to 'CorOS-dev-environment/CorOS-build-env/docker-compose.yaml')
-rw-r--r-- | CorOS-dev-environment/CorOS-build-env/docker-compose.yaml | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml b/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml index 3f4c9d6..3d75bb1 100644 --- a/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml +++ b/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml @@ -1,25 +1,25 @@ # 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 + coros-dev: + image: cortex-dev:latest + build: + context: ../ + dockerfile: CorOS-build-env/Dockerfile + tags: + - opencortex/coros-dev:latest - volumes: - - ../filesystems:/qc-fs - - ../mount:/mnt + 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 + environment: + # Edit this to your needs. This should be just the file name, not the path. + - UPDATE_FILE=verify.bin.gz - # Port forward the VNC port - ports: - - "5900:5900" + # Port forward the VNC port + ports: + - "5900:5900" - privileged: true - entrypoint: /bin/bash -c "while true; do sleep 1; done"
\ No newline at end of file + privileged: true + entrypoint: /bin/bash -c "while true; do sleep 1; done" |