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 | 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" |