feat(docker): container that launches server and scanner in one

!1
This commit is contained in:
2024-02-21 00:26:40 +09:30
parent add0b2390b
commit f9af64e7a1
10 changed files with 474 additions and 2 deletions

View File

@ -6,6 +6,7 @@
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-australian-english",
"redhat.ansible",
"ms-azuretools.vscode-docker"
"ms-azuretools.vscode-docker",
"ms-python.python"
]
}

15
.vscode/settings.json vendored
View File

@ -1,5 +1,18 @@
{
"gitlab.aiAssistedCodeSuggestions.enabled": false,
"gitlab.duoChat.enabled": false,
"cSpell.language": "en-AU,en"
"cSpell.language": "en-AU,en",
"yaml.schemas": {
"https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible.json#/$defs/tasks": [
"file://${workspaceFolder}/playbooks/tasks/**",
"file://${workspaceFolder}/playbooks/tasks/**/**",
],
"https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/inventory.json": [
"file://${workspaceFolder}/includes/root/hosts.yaml"
],
},
"files.associations": {
"includes/etc/supervisor/supervisord.conf": "ini",
"includes/etc/supervisor/conf.d/*.conf": "ini",
}
}