Kaydet (Commit) 5e85eb58 authored tarafından Hakkı Dizdar's avatar Hakkı Dizdar

Konteyner silme işlemi için gerekli konfigurasyon yapıldı

üst ac0059ee
......@@ -60,7 +60,9 @@ app.post("/stop", (req, res) => {
app.post("/remove", (req, res) => {
const container = docker.getContainer(req.body.container);
container
.remove()
.remove({
force: true,
})
.then(() => {
res.status(200).end();
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment