Mirror of Lumina
1// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
3{
4 "name": "Lumina devcontainer for GH codespaces",
5 // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6 "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
7 "features": {
8 "ghcr.io/devcontainers-extra/features/mise": {
9 "version": "latest"
10 },
11 "ghcr.io/devcontainers/features/docker-in-docker:2.12.4": {
12 "version": "latest"
13 }
14 },
15
16 "postCreateCommand": "bash .devcontainer/ghcodespaces/scripts/postCreate.sh",
17 "postAttachCommand": "bash .devcontainer/ghcodespaces/scripts/postAttach.sh"
18
19 // Use 'forwardPorts' to make a list of ports inside the container available locally.
20 // "forwardPorts": [],
21
22 // Configure tool-specific properties.
23 // "customizations": {},
24
25 // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
26 // "remoteUser": "root"
27}