From be45cd595535bdbb0e2d62fa2c17c90115dc069d Mon Sep 17 00:00:00 2001 From: Judah Fuller Date: Tue, 18 Jul 2023 09:15:01 +0100 Subject: Fix dock pulling from cloud instead of local --- .../CorOS-build-env/docker-compose.yaml | 36 +++++++++++----------- 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'CorOS-dev-environment/CorOS-build-env/docker-compose.yaml') diff --git a/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml b/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml index 3f4c9d6..f1278e5 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: opencortex/coros-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" -- cgit v1.2.3 From 21a4119966e79645c60159548d700d19926f0505 Mon Sep 17 00:00:00 2001 From: Judah Fuller Date: Tue, 18 Jul 2023 09:53:40 +0100 Subject: Fix image pulls --- CorOS-dev-environment/CorOS-build-env/docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CorOS-dev-environment/CorOS-build-env/docker-compose.yaml') diff --git a/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml b/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml index f1278e5..3d75bb1 100644 --- a/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml +++ b/CorOS-dev-environment/CorOS-build-env/docker-compose.yaml @@ -2,7 +2,7 @@ services: coros-dev: - image: opencortex/coros-dev:latest + image: cortex-dev:latest build: context: ../ dockerfile: CorOS-build-env/Dockerfile -- cgit v1.2.3