9 lines
134 B
MySQL
9 lines
134 B
MySQL
|
-- Return the list of ports for Docker containers
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
-- platform: linux
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
docker_container_ports;
|