1234567891011121314151617181920212223242526272829303132 |
- {
- "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}/testdata/test-images",
- "target": "/images",
- "type": "bind"
- }
- ],
- "customizations": {
- "vscode": {
- "extensions": [
- "golang.go"
- ]
- }
- },
- "postCreateCommand": "lefthook install"
- }
|