fix & opt.

- fix: ssh paste
- opt.: docker logs & shell
This commit is contained in:
lollipopkit
2023-05-27 18:58:38 +08:00
parent 4f45ce3f50
commit 02494651fc
9 changed files with 36 additions and 55 deletions

View File

@@ -51,7 +51,7 @@ enum DockerMenuType {
static List<DockerMenuType> items(bool running) {
if (running) {
return [stop, restart, rm, logs];
return [stop, restart, rm, logs, terminal];
} else {
return [start, rm, logs];
}