dragonfly/.devcontainer/ubuntu24/devcontainer.json
Roman Gershman b8ef7cdf69
chore: allow setting huffman tables via DEBUG COMPRESSION SET (#5083)
Also, revert the impact of performance bomb from #2564

Signed-off-by: Roman Gershman <roman@dragonflydb.io>
2025-05-08 22:10:59 +03:00

22 lines
552 B
JSON

{
"name": "ubuntu24",
"image": "ghcr.io/romange/ubuntu-dev:24",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"ms-vscode.cpptools-themes",
"twxs.cmake"
],
"settings": {
"cmake.buildDirectory": "/build",
"extensions.ignoreRecommendations": true
}
}
},
"mounts": [
"source=ubuntu24-vol,target=/build,type=volume"
],
"postCreateCommand": ".devcontainer/ubuntu24/post-create.sh ${containerWorkspaceFolder}"
}