Updated docs and minor cleanup

This commit is contained in:
2024-07-15 22:49:31 +02:00
parent d6609fd335
commit 777b0fccc8
10 changed files with 56 additions and 37 deletions

View File

@@ -21,9 +21,9 @@ public partial class MycroForge
private async Task ExecuteAsync()
{
var config = await _context.LoadConfig();
var env = $"DB_PORT={config.Db.DbhPort} PMA_PORT={config.Db.DbuPort}";
await _context.Bash($"{env} docker compose -f {Features.Db.FeatureName}.docker-compose.yml down");
await _context.Bash(
$"docker --log-level ERROR compose -f {Features.Db.FeatureName}.docker-compose.yml down"
);
}
}
}