2023-06-16 05:13:06 +00:00
|
|
|
{
|
|
|
|
"name": "Gitea DevContainer",
|
2024-02-14 18:19:57 +00:00
|
|
|
"image": "mcr.microsoft.com/devcontainers/go:1.22-bullseye",
|
2023-06-16 05:13:06 +00:00
|
|
|
"features": {
|
|
|
|
// installs nodejs into container
|
|
|
|
"ghcr.io/devcontainers/features/node:1": {
|
2024-03-19 23:08:42 +00:00
|
|
|
"version": "20"
|
2023-06-20 19:28:46 +00:00
|
|
|
},
|
2023-06-21 08:44:58 +00:00
|
|
|
"ghcr.io/devcontainers/features/git-lfs:1.1.0": {},
|
|
|
|
"ghcr.io/devcontainers-contrib/features/poetry:2": {},
|
2024-03-08 15:10:01 +00:00
|
|
|
"ghcr.io/devcontainers/features/python:1": {
|
|
|
|
"version": "3.12"
|
|
|
|
}
|
2023-06-16 05:13:06 +00:00
|
|
|
},
|
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
"settings": {},
|
|
|
|
// same extensions as Gitpod, should match /.gitpod.yml
|
|
|
|
"extensions": [
|
|
|
|
"editorconfig.editorconfig",
|
|
|
|
"dbaeumer.vscode-eslint",
|
|
|
|
"golang.go",
|
|
|
|
"stylelint.vscode-stylelint",
|
|
|
|
"DavidAnson.vscode-markdownlint",
|
|
|
|
"Vue.volar",
|
|
|
|
"ms-azuretools.vscode-docker",
|
2024-03-19 23:08:42 +00:00
|
|
|
"vitest.explorer",
|
2023-07-14 07:58:02 +00:00
|
|
|
"qwtel.sqlite-viewer",
|
|
|
|
"GitHub.vscode-pull-request-github"
|
2023-06-16 05:13:06 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"portsAttributes": {
|
|
|
|
"3000": {
|
|
|
|
"label": "Gitea Web",
|
|
|
|
"onAutoForward": "notify"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"postCreateCommand": "make deps"
|
|
|
|
}
|