mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:04:16 -04:00
* feat: devcontainers * Update link * Update docs * Extend existing dockerfiles/composes * Add jre for make open-api * Add jre for make open-api * shellcheck * git doesn't like bind mount within git repo * group tasks * Missing sudo * Review comments * tweak for codespaces * typo * Lots of docs * close <br> * Specify ENV vars for database * doc errors * fix broken doc link * Simplify devcontainers scripts/startup --------- Co-authored-by: Jason Rasmussen <jason@rasm.me>
53 lines
1.6 KiB
JSON
53 lines
1.6 KiB
JSON
{
|
|
"name": "Immich - Mobile",
|
|
"service": "immich-server",
|
|
"runServices": [
|
|
"immich-server",
|
|
"redis",
|
|
"database",
|
|
"immich-machine-learning"
|
|
],
|
|
"dockerComposeFile": [
|
|
"../../docker/docker-compose.dev.yml",
|
|
"./container-compose-overrides.yml"
|
|
],
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"Dart-Code.dart-code",
|
|
"Dart-Code.flutter",
|
|
"dcmdev.dcm-vscode-extension",
|
|
"esbenp.prettier-vscode",
|
|
"dbaeumer.vscode-eslint",
|
|
"esbenp.prettier-vscode",
|
|
"svelte.svelte-vscode",
|
|
"ms-vscode-remote.remote-containers",
|
|
"foxundermoon.shell-format",
|
|
"timonwong.shellcheck",
|
|
"rvest.vs-code-prettier-eslint",
|
|
"bluebrown.yamlfmt",
|
|
"vkrishna04.cspell-sync",
|
|
"vitest.explorer",
|
|
"ms-playwright.playwright",
|
|
"ms-azuretools.vscode-docker"
|
|
]
|
|
}
|
|
},
|
|
"forwardPorts": [],
|
|
"overrideCommand": true,
|
|
"workspaceFolder": "/workspaces/immich",
|
|
"remoteUser": "node",
|
|
"userEnvProbe": "loginInteractiveShell",
|
|
"remoteEnv": {
|
|
// The location where your uploaded files are stored
|
|
"UPLOAD_LOCATION": "${localEnv:UPLOAD_LOCATION:./Library}",
|
|
// Connection secret for postgres. You should change it to a random password
|
|
// Please use only the characters `A-Za-z0-9`, without special characters or spaces
|
|
"DB_PASSWORD": "${localEnv:DB_PASSWORD:postgres}",
|
|
// The database username
|
|
"DB_USERNAME": "${localEnv:DB_USERNAME:postgres}",
|
|
// The database name
|
|
"DB_DATABASE_NAME": "${localEnv:DB_DATABASE_NAME:immich}"
|
|
}
|
|
}
|