9 lines
142 B
MySQL
9 lines
142 B
MySQL
|
-- Return the list of running Docker containers on this machine
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
-- platform: linux
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
docker_containers
|