1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00
Files
openshift-docs/.devcontainer/devcontainer.json
2024-07-26 12:30:07 +01:00

15 lines
598 B
JSON

{
"image":"mcr.microsoft.com/devcontainers/universal:2",
"postCreateCommand": "sleep 60 && docker run --rm -it -v `pwd`:/docs:Z quay.io/openshift-cs/asciibinder sh -c \"git config --global --add safe.directory /docs && asciibinder build --distro openshift-rosa && asciibinder build --distro openshift-enterprise\" && python3 -m http.server -d ./_preview",
"customizations": {
"vscode": {
"settings": {
"search.followSymlinks": false,
"workbench.editor.enablePreview": false
},
"extensions": [
"asciidoctor.asciidoctor-vscode"
]
}
}
}