Is your feature request related to a problem?
The webUI for Docker currently has options to restart a container or update a container but the API does not. The API currently only allows you to start/stop a container.
Describe the solution you'd like
An additional mutation field for docker to restart and update it.
mutation Docker($restartID: PrefixedID!, $updateID: PrefixedID!) {
docker {
restart(id: $restartID) {}
update(id: $updateID) {}
}
}
Additional context
Pre-submission Checklist
Is your feature request related to a problem?
The webUI for Docker currently has options to restart a container or update a container but the API does not. The API currently only allows you to start/stop a container.
Describe the solution you'd like
An additional mutation field for docker to restart and update it.
Additional context
Pre-submission Checklist