Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Docker Quick-n-Dirty ====== ===== List Containers ===== <code bash> docker ps --format "\nID:{{.ID}} \nNames: {{.Names}} \nCommand: {{.Command}} \nPorts: {{.Ports}} \nImage: {{.Image}} \nCreated: {{.CreatedAt}}" --no-trunc </code> ==== Test Connection From Inside Container ==== === Example === <code bash> docker run --rm --init -it alpine sh -c "apk add --update --no-cache netcat-openbsd && timeout 5s nc -v 172.16.60.14 514" </code> docker_quick-n-dirty.txt Last modified: 2025/03/28 16:21by mgupton