mirror of
https://kolaente.dev/konrad/docker-db-backup.git
synced 2026-01-08 17:30:07 +01:00
feat: remove old containers
This commit is contained in:
7
store.go
7
store.go
@@ -21,6 +21,10 @@ func storeContainers(c *client.Client, containers []types.Container) {
|
||||
lock.Lock()
|
||||
defer lock.Unlock()
|
||||
|
||||
for _, container := range containers {
|
||||
delete(store, container.ID)
|
||||
}
|
||||
|
||||
for _, container := range containers {
|
||||
if container.State != "running" {
|
||||
continue
|
||||
@@ -40,7 +44,4 @@ func storeContainers(c *client.Client, containers []types.Container) {
|
||||
|
||||
store[container.ID] = dumper
|
||||
}
|
||||
|
||||
// TODO: remove old containers
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user