orcli/.devcontainer/devcontainer.json

12 lines
546 B
JSON
Raw Normal View History

2023-10-20 20:19:41 +02:00
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
},
2024-12-08 23:37:39 +01:00
"postCreateCommand": "gem install --silent bashly && wget -q -O openrefine.tar.gz https://github.com/OpenRefine/OpenRefine/releases/download/3.8.7/openrefine-linux-3.8.7.tar.gz && tar --exclude 'licenses' --exclude 'LICENSE.txt' --exclude 'licenses.xml' --exclude 'README.md' -xzf openrefine.tar.gz --strip 1 && rm openrefine.tar.gz && ln -s \"${PWD}/orcli\" ~/.local/bin/",
2023-10-20 20:35:59 +02:00
"forwardPorts": [3333],
"portsAttributes": {
"3333": {
"label": "OpenRefine"
}
}
2023-10-20 20:19:41 +02:00
}