37 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
| // For format details, see https://aka.ms/devcontainer.json. For config options, see the
 | |
| // README at: https://github.com/devcontainers/templates/tree/main/src/debian
 | |
| {
 | |
|     "name": "lev-templates",
 | |
| 
 | |
|     // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
 | |
|     "image": "code.lenaisten.de/lenaisten/lev-templates:latest",
 | |
| 
 | |
|     // Features to add to the dev container. More info: https://containers.dev/features.
 | |
|     "features": {
 | |
|         "ghcr.io/devcontainers/features/common-utils:2": {
 | |
|             "configureZshAsDefaultShell": "true"
 | |
|         },
 | |
|         "ghcr.io/devcontainers/features/git:1": {}
 | |
|     },
 | |
| 
 | |
|     // Ensure git is installed before git-lfs
 | |
|     "overrideFeatureInstallOrder": [
 | |
|         "ghcr.io/devcontainers/features/common-utils",
 | |
|         "ghcr.io/devcontainers/features/git"
 | |
|     ],
 | |
| 
 | |
|     // Configure tool-specific properties.
 | |
|     "customizations": {
 | |
|         "vscode": {
 | |
|             "extensions": [
 | |
|                 "mhutchie.git-graph"
 | |
|             ]
 | |
|         }
 | |
|     },
 | |
| 
 | |
|     // Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
 | |
|     "remoteUser": "vscode"
 | |
| 
 | |
|     // Use 'forwardPorts' to make a list of ports inside the container available locally.
 | |
|     // "forwardPorts": [],
 | |
| }
 |