2023-06-16 10:43:06 +05:30
|
|
|
{
|
|
|
|
"name": "Gitea DevContainer",
|
2024-05-11 07:34:41 +05:30
|
|
|
"image": "mcr.microsoft.com/devcontainers/go:1.22-bullseye",
|
2023-06-16 10:43:06 +05:30
|
|
|
"features": {
|
|
|
|
// installs nodejs into container
|
|
|
|
"ghcr.io/devcontainers/features/node:1": {
|
2024-03-20 04:38:42 +05:30
|
|
|
"version": "20"
|
2023-06-21 00:58:46 +05:30
|
|
|
},
|
2024-05-11 07:34:33 +05:30
|
|
|
"ghcr.io/devcontainers/features/git-lfs:1.2.0": {},
|
2023-06-21 14:14:58 +05:30
|
|
|
"ghcr.io/devcontainers-contrib/features/poetry:2": {},
|
2024-03-08 20:40:01 +05:30
|
|
|
"ghcr.io/devcontainers/features/python:1": {
|
|
|
|
"version": "3.12"
|
|
|
|
}
|
2023-06-16 10:43:06 +05:30
|
|
|
},
|
|
|
|
"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-20 04:38:42 +05:30
|
|
|
"vitest.explorer",
|
2023-07-14 13:28:02 +05:30
|
|
|
"qwtel.sqlite-viewer",
|
|
|
|
"GitHub.vscode-pull-request-github"
|
2023-06-16 10:43:06 +05:30
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"portsAttributes": {
|
|
|
|
"3000": {
|
|
|
|
"label": "Gitea Web",
|
|
|
|
"onAutoForward": "notify"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"postCreateCommand": "make deps"
|
|
|
|
}
|