diff options
author | Thomas Van Iseghem <[email protected]> | 2023-09-07 22:12:30 +0200 |
---|---|---|
committer | Thomas Van Iseghem <[email protected]> | 2023-09-07 22:12:30 +0200 |
commit | d9e72343d0e6feb83854dbca4dc780432b561062 (patch) | |
tree | e39573f5edd8edfe87cb32becd41ca7f1efcd70d | |
parent | 2b2e0395ab0a87fcfafefa4fc8b7cd02577b9946 (diff) | |
download | OpenCortex-d9e72343d0e6feb83854dbca4dc780432b561062.tar.gz OpenCortex-d9e72343d0e6feb83854dbca4dc780432b561062.zip |
Added devcontainer for vscode
-rw-r--r-- | .devcontainer/devcontainer.json | 14 | ||||
-rw-r--r-- | CorOS-dev-environment/CorOS-emulation/docker-compose.yaml | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..ac71510 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,14 @@ +// .devcontainer/devcontainer.json +{ + "name": "CorOS DevContainer", + "workspaceFolder": "/", + "dockerComposeFile": ["../CorOS-dev-environment/CorOS-emulation/docker-compose.yaml"], + "service": "coros-emu", + "containerEnv": { + "UPDATE_FILE": "update-dYOaOKRKVdwFYyN2bb4KCKkl5Wjc1hg6.bin.gz" + }, + "forwardPorts": [5900], + "postCreateCommand": "/bin/bash", + "shutdownAction": "stopCompose" + } +
\ No newline at end of file diff --git a/CorOS-dev-environment/CorOS-emulation/docker-compose.yaml b/CorOS-dev-environment/CorOS-emulation/docker-compose.yaml index 743a1a0..edd22bf 100644 --- a/CorOS-dev-environment/CorOS-emulation/docker-compose.yaml +++ b/CorOS-dev-environment/CorOS-emulation/docker-compose.yaml @@ -15,7 +15,7 @@ services: environment: # Edit this to your needs. This should be just the file name, not the path. - - UPDATE_FILE=update-v6_MZO3_RudwwcoQAF3iLtPQ0ERwy4w6.bin.gz + - UPDATE_FILE=update-dYOaOKRKVdwFYyN2bb4KCKkl5Wjc1hg6.bin.gz # Port forward the VNC port ports: |