mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-12-23 22:11:10 +02:00
33 lines
801 B
JSON
33 lines
801 B
JSON
{
|
|
"build": {
|
|
"dockerfile": "../Dockerfile"
|
|
},
|
|
"name": "imgproxy OSS",
|
|
"forwardPorts": [
|
|
8080
|
|
],
|
|
"containerEnv": {
|
|
"IMGPROXY_LOCAL_FILESYSTEM_ROOT": "/images",
|
|
"IMGPROXY_ENABLE_VIDEO_THUMBNAILS": "true",
|
|
"IMGPROXY_MAX_ANIMATION_FRAMES": "999",
|
|
"IMGPROXY_VIPS_LEAK_CHECK": "true",
|
|
"IMGPROXY_LOG_MEM_STATS": "true",
|
|
"IMGPROXY_DEVELOPMENT_ERRORS_MODE": "true"
|
|
},
|
|
"mounts": [
|
|
{
|
|
"source": "${localWorkspaceFolder}/.devcontainer/images",
|
|
"target": "/images",
|
|
"type": "bind"
|
|
}
|
|
],
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"golang.go"
|
|
]
|
|
}
|
|
},
|
|
"postCreateCommand": "lefthook install"
|
|
}
|