123456789101112131415161718192021222324252627 |
- // For format details, see https://aka.ms/devcontainer.json. For config options, see the
- // README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
- {
- "name": "Ubuntu",
- // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
- "image": "mcr.microsoft.com/devcontainers/base:noble",
- "features": {
- "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
- "ghcr.io/prulloac/devcontainer-features/latex:1": {
- "packages": "pgf,moderncv,moderntimeline,emoji,luatexbase,fontspec"
- },
- "./features/local": {}
- },
-
- "mounts": [
- "source=${localEnv:HOME}/.docker,target=/home/vscode/.docker,type=bind"
- ],
-
- "customizations": {
- "vscode": {
- "settings": {
- },
- "extensions": [
- ]
- }
- }
- }
|