1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-12-23 22:11:10 +02:00
Files
imgproxy/.devcontainer/oss/devcontainer.json
Victor Sokolov aa91342686 IMG-33: adds simple integration tests for image.Load() (#1462)
* Load() integration test

* Added test-images as submodule
2025-07-23 19:09:49 +02:00

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"
}