File size: 1,709 Bytes
786d4da
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
	"name": "solar_eyes",

	"dockerComposeFile": "docker-compose.yml",

	"workspaceFolder": "/workspaces/solar_eyes",

	"service": "solar_eyes",

	// Features to add to the dev container. More info: https://containers.dev/features.
	// "features": {},

	// Use 'forwardPorts' to make a list of ports inside the container available locally.
	// "forwardPorts": [],

	// Uncomment the next line to use 'postCreateCommand' to run commands after the container is created.
    // "postCreateCommand": "./post-devcontainer.sh",

	// Configure tool-specific properties.
	// Add the IDs of extensions you want installed when the container is created.
	"customizations": {
		"vscode": {
			"extensions": [
				"ms-azuretools.vscode-docker",
				"ms-python.python",
				"timonwong.shellcheck",
				"GitHub.copilot",
				"ms-toolsai.jupyter",
				"mechatroner.rainbow-csv"
			],
			"settings": {
				"editor.tabSize": 4,
				"terminal.integrated.defaultProfile.linux": "bash",
				"terminal.integrated.profiles.linux": {
				  "bash": {
					"path": "bash",
					"icon": "terminal-bash"
				  },
				  "zsh": {
					"path": "zsh"
				  },
				  "tmux": {
					"path": "tmux",
					"icon": "terminal-tmux"
				  }
				}
			}
		}
	},
	
	"features": {
		"ghcr.io/devcontainers/features/github-cli:1": {},
		"ghcr.io/mikaello/devcontainer-features/modern-shell-utils:1": {},
		"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
	},

	"remoteUser": "vscode",

	"postStartCommand": "./post-devcontainer.sh",
	
	"shutdownAction": "stopCompose"

}