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-emulation/docker-compose.yaml | |
parent | 3ba4308938bcab5a23ae96b0809895ef28d47720 (diff) | |
parent | 1b0601a8be5deecf3dd27eff6213ac7359d9761c (diff) | |
download | OpenCortex-main.tar.gz OpenCortex-main.zip |
Add M1 Docker Docs
Diffstat (limited to 'CorOS-dev-environment/CorOS-emulation/docker-compose.yaml')
-rw-r--r-- | CorOS-dev-environment/CorOS-emulation/docker-compose.yaml | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/CorOS-dev-environment/CorOS-emulation/docker-compose.yaml b/CorOS-dev-environment/CorOS-emulation/docker-compose.yaml index edd22bf..99bbcc4 100644 --- a/CorOS-dev-environment/CorOS-emulation/docker-compose.yaml +++ b/CorOS-dev-environment/CorOS-emulation/docker-compose.yaml @@ -1,25 +1,25 @@ # Docker compose file for easy volume mounting and running of the container services: - coros-emu: - image: opencortex/coros-emu:latest - build: - context: ../ - dockerfile: CorOS-emulation/Dockerfile - tags: - - opencortex/coros-emu:latest + coros-emu: + image: opencortex/coros-emu:latest + build: + context: ../ + dockerfile: CorOS-emulation/Dockerfile + tags: + - opencortex/coros-emu: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=update-v6_MZO3_RudwwcoQAF3iLtPQ0ERwy4w6.bin.gz - environment: - # Edit this to your needs. This should be just the file name, not the path. - - UPDATE_FILE=update-dYOaOKRKVdwFYyN2bb4KCKkl5Wjc1hg6.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" |