mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 00:09:40 +02:00
fix(docker-event-display): support the exec exited event type (#5990)
Signed-off-by: Sven Dowideit <sven.dowideit@portainer.io>
This commit is contained in:
parent
7d92aa1971
commit
22b72fb6e3
1 changed files with 2 additions and 0 deletions
|
@ -69,6 +69,8 @@ function createEventDetails(event) {
|
|||
details = 'Exec instance created';
|
||||
} else if (event.Action.indexOf('exec_start') === 0) {
|
||||
details = 'Exec instance started';
|
||||
} else if (event.Action.indexOf('exec_die') === 0) {
|
||||
details = 'Exec instance exited ';
|
||||
} else {
|
||||
details = 'Unsupported event';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue