first commit
This commit is contained in:
20
app.ps1
Normal file
20
app.ps1
Normal file
@@ -0,0 +1,20 @@
|
||||
$DIR = "wazuh/config/wazuh_indexer_ssl_certs"
|
||||
|
||||
# Para iniciarse wazuh por primera vez se necesita crear unas claves
|
||||
|
||||
if (!(Test-Path $DIR)) {
|
||||
Write-Host "Creando claves privadas..."
|
||||
|
||||
Set-Location wazuh
|
||||
|
||||
docker-compose -f generate-indexer-certs.yml run --rm generator
|
||||
|
||||
Set-Location ..
|
||||
|
||||
}
|
||||
|
||||
# Se inician los contenedores
|
||||
|
||||
docker-compose up -d --build
|
||||
|
||||
docker exec -it ollama ollama pull qwen2.5:7b
|
||||
Reference in New Issue
Block a user