https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 0fae885b11672161fb5f3a5bc8e8569ad97c8e98 authored by Lars Bilke on 14 June 2024, 11:21:40 UTC
post-release typos.
Tip revision: 0fae885
.devcontainer.json
{
  "name": "ogs-gcc-dev",
  "image": "mcr.microsoft.com/devcontainers/cpp",
  "mounts": [
    "source=devcontainer-cpm-cache,target=/opt/cpm,type=volume",
    "source=devcontainer-ccache-cache,target=/opt/ccache,type=volume",
    "source=${localWorkspaceFolder}/../build,target=${containerWorkspaceFolder}/../build,type=bind"
  ],
  "features": {
    "common": {},
    "ghcr.io/devcontainers/features/python:1": {},
    "ghcr.io/devcontainers/features/common-utils:2": {
      "configureZshAsDefaultShell": true
    }
  }
}
back to top