Add devcontainer
All checks were successful
forgejo/Procyon/seedling/pipeline/head This commit looks good
All checks were successful
forgejo/Procyon/seedling/pipeline/head This commit looks good
This commit is contained in:
parent
0cdbea8523
commit
6fcad07180
4 changed files with 39 additions and 0 deletions
3
.devcontainer/Dockerfile
Normal file
3
.devcontainer/Dockerfile
Normal file
|
@ -0,0 +1,3 @@
|
|||
FROM local/nodejs/dev:18
|
||||
|
||||
USER node
|
17
.devcontainer/devcontainer.json
Normal file
17
.devcontainer/devcontainer.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"name": "seedling",
|
||||
"workspaceFolder": "/home/project/seedling",
|
||||
"dockerComposeFile": "docker-compose.yml",
|
||||
"service": "seedling",
|
||||
"postCreateCommand": "sudo chown node:node -R /home/project",
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"Fooxly.themeswitch",
|
||||
"EditorConfig.EditorConfig",
|
||||
"rvest.vs-code-prettier-eslint",
|
||||
"wix.vscode-import-cost"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
18
.devcontainer/docker-compose.yml
Normal file
18
.devcontainer/docker-compose.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
version: "3"
|
||||
|
||||
name: seedling
|
||||
|
||||
volumes:
|
||||
node_modules:
|
||||
pnpm-store:
|
||||
|
||||
services:
|
||||
seedling:
|
||||
build:
|
||||
context: .
|
||||
container_name: seedling
|
||||
volumes:
|
||||
- ../:/home/project/seedling
|
||||
- node_modules:/home/project/seedling/node_modules
|
||||
- pnpm-store:/home/project/seedling/.pnpm-store
|
||||
command: sleep infinity
|
1
.env
Normal file
1
.env
Normal file
|
@ -0,0 +1 @@
|
|||
COMPOSE_PROJECT_NAME=seedling
|
Loading…
Add table
Reference in a new issue