mirror of
https://github.com/immich-app/immich.git
synced 2024-11-21 18:16:55 +02:00
5a2af558fb
* add minimal devcontainer setup * fix Makefile & update doc * fix Makefile * add warning regarding devcontainer + add newline at EOF
21 lines
348 B
JSON
21 lines
348 B
JSON
{
|
|
"name": "Immich devcontainers",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"args": {
|
|
"BASEIMAGE": "mcr.microsoft.com/devcontainers/typescript-node:22"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"svelte.svelte-vscode"
|
|
]
|
|
}
|
|
},
|
|
"forwardPorts": [],
|
|
"postCreateCommand": "make install-all",
|
|
"remoteUser": "node"
|
|
}
|
|
|