···11+// For format details, see https://aka.ms/devcontainer.json. For config options, see the
22+// README at: https://github.com/devcontainers/templates/tree/main/src/debian
33+{
44+ "name": "Dev",
55+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
66+ "image": "mcr.microsoft.com/devcontainers/base:bookworm",
77+88+ // Features to add to the dev container. More info: https://containers.dev/features.
99+ "features": {
1010+ "ghcr.io/devcontainers/features/go:1": {},
1111+ "ghcr.io/devcontainers/features/node:1": {},
1212+ "ghcr.io/xe/devcontainer-features/deno:1.2.1": {},
1313+ "ghcr.io/xe/devcontainer-features/fish:0.1.1": {},
1414+ "ghcr.io/devcontainer-community/devcontainer-features/atuin.sh:1": {}
1515+ },
1616+ "mounts": [
1717+ "source=${localEnv:HOME}${localEnv:USERPROFILE}/.local/share/atuin,target=/home/vscode/.local/share/atuin,type=bind,consistency=cached"
1818+ ],
1919+2020+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
2121+ "forwardPorts": [3000]
2222+2323+ // Configure tool-specific properties.
2424+ // "customizations": {},
2525+2626+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
2727+ // "remoteUser": "root"
2828+}