Show stopped Docker containers - Stack Overflow (https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a) (Stack Overflow) (https://stackoverflow.com/opensearch.xml) (https://stackoverflow.com/questions/38453308/show-stopped-docker-containers) (Feed for question 'Show stopped Docker containers') (https://stackoverflow.com/feeds/question/38453308) (site logo) Join Stack Overflow By clicking “Sign up”, you agree to our (https://stackoverflow.com/legal/terms-of-service/public) terms of service and acknowledge you have read our (https://stackoverflow.com/legal/privacy-policy) privacy policy . Sign up with Google Sign up with GitHub OR Email Password (8+ characters (at least 1 letter & 1 number)) Sign up Already have an account? (https://stackoverflow.com/users/login) Log in Skip to main content (https://stackoverflow.com/) Stack Overflow (https://stackoverflow.co/) About Products (https://stackoverflow.co/teams/ai/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=top-nav-bar&utm_content=overflowai) OverflowAI (Search…) (Click to show search) (https://stackoverflow.com/users/login?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f38453308%2fshow-stopped-docker-containers) Log in (https://stackoverflow.com/users/signup?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f38453308%2fshow-stopped-docker-containers) Sign up Let's set up your homepage Select a few topics you're interested in: python javascript c# reactjs java android html flutter c++ node.js typescript css r php angular next.js spring-boot machine-learning sql excel ios azure docker Or search from our full list: (Search) Next You’ll be prompted to create an account to view your personalized homepage. (https://stackoverflow.com/) Home (https://stackoverflow.com/questions) Questions (https://stackoverflow.com/tags) Tags (https://stackoverflow.com/beta/discussions) Discussions Labs (https://chat.stackoverflow.com/?tab=all&sort=active) Chat (https://stackoverflow.com/users) Users (https://stackoverflow.com/jobs?source=so-left-nav) Jobs (https://stackoverflow.com/jobs/companies?so_medium=stackoverflow&so_source=SiteNav) Companies Collectives Communities for your favorite technologies. (https://stackoverflow.com/collectives-all) Explore all Collectives Teams Ask questions, find answers and collaborate at work with Stack Overflow for Teams. (https://stackoverflowteams.com/teams/create/free/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=side-bar&utm_content=explore-teams) Try Teams for free (https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=side-bar&utm_content=explore-teams) Explore Teams (Illustration of upvote icon after it is clicked) Hang on, you can't upvote just yet. You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. (https://stackoverflow.com/help/whats-reputation) What's reputation and how do I get it? Instead, you can save this post to reference later. Save this post for later Not now (Illustration of upvote icon after it is clicked) Hang on, you can't downvote just yet. You'll need to complete a few actions and gain 125 reputation points before being able to downvote. Casting downvotes indicate issues with quality, effort, or accuracay of a post. (https://stackoverflow.com/help/whats-reputation) What's reputation and how do I get it? Instead, you can try suggesting an edit to improve the post. Suggest edit No thanks (Illustration of upvote icon after it is clicked) Hang on, you can't upvote just yet. You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. (https://stackoverflow.com/help/whats-reputation) What's reputation and how do I get it? To start gaining reputation, try answering a related question. docker Find related question Not now (https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a) (https://stackoverflow.com/questions/38453308/show-stopped-docker-containers) Show stopped Docker containers (https://stackoverflow.com/questions/ask) Ask Question (2016-07-19 08:32:58Z) Asked 8 years, 9 months ago Modified (https://stackoverflow.com/questions/38453308/show-stopped-docker-containers?lastactivity) (2024-07-09 18:37:08Z) 9 months ago (Viewed 106,774 times) Viewed 107k times This question shows research effort; it is useful and clear 76 (This question does not show any research effort; it is unclear or not useful) Save this question. (https://stackoverflow.com/posts/38453308/timeline) Show activity on this post. I am new to Docker, and I would like to list the stopped containers. With docker ps : sudo docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES Nothing appears, because I restarted the machine and I didn't configure them to start the containers automatically. So when I try to run a container it says: sudo docker run -d -p 8080:80 --name=angular_moviemasher moviemasher/angular-moviemasher docker: Error response from daemon: Conflict. The name "/angular_moviemasher" is already in use by container b4428b708711c15233f558e70f58cb7800e23c4a6a57534abfa5818912630a37. You have to remove (or rename) that container to be able to reuse that name.. See 'docker run --help'. So I would like to see which Docker containers are already installed and start them. In the documentation (https://coderwall.com/p/2es5jw/docker-cheat-sheet-with-examples) Docker Cheat Sheet with examples I can only find an example of how to show running containers: Info of Container To show running Containers. With -a option, it shows running and stopped Containers. docker ps (https://stackoverflow.com/questions/tagged/docker) (show questions tagged 'docker') docker (https://stackoverflow.com/q/38453308) (Short permalink to this question) Share (https://stackoverflow.com/posts/38453308/edit) Improve this question Follow Follow this question to receive notifications (https://stackoverflow.com/posts/38453308/revisions) (show all edits to this post) edited (2024-07-09 05:40:17Z) Jul 9, 2024 at 5:40 (https://stackoverflow.com/users/107625/uwe-keim) (Uwe Keim's user avatar) (https://stackoverflow.com/users/107625/uwe-keim) Uwe Keim (reputation score 40,804) 40.8k (61 gold badges) 61 61 gold badges (190 silver badges) 190 190 silver badges (304 bronze badges) 304 304 bronze badges asked (2016-07-19 08:32:58Z) Jul 19, 2016 at 8:32 (https://stackoverflow.com/users/3767778/lapinkoira) (lapinkoira's user avatar) (https://stackoverflow.com/users/3767778/lapinkoira) lapinkoira lapinkoira (reputation score) 9,038 (9 gold badges) 9 9 gold badges (58 silver badges) 58 58 silver badges (108 bronze badges) 108 108 bronze badges 2 (number of 'useful comment' votes received) 1 Not sure why your quote says "running and stopped" and you mention it only shows running, but docker ps --help can be your friend here and other places. Note you can also do docker rm $(docker ps -a | grep Exit | cut -d ' ' -f 1) to remove all Exited containers -- which will remove the conflicting name error you mention. – (https://stackoverflow.com/users/786662/ldg) (9,402 reputation) ldg Commented (2016-07-19 18:37:38Z, License: CC BY-SA 3.0) Jul 19, 2016 at 18:37 (this comment was edited 1 time) (number of 'useful comment' votes received) 1 docker container ls -a – (https://stackoverflow.com/users/1173112/koray-tugay) (23,904 reputation) Koray Tugay Commented (2019-05-24 17:43:05Z, License: CC BY-SA 4.0) May 24, 2019 at 17:43 (Use comments to ask for more information or suggest improvements. Avoid answering questions in comments.) Add a comment | (Expand to show all comments on this post) 6 Answers 6 Sorted by: (https://stackoverflow.com/questions/38453308/show-stopped-docker-containers?answertab=scoredesc#tab-top) Reset to default (scoredesc) Highest score (default) (trending) Trending (recent votes count more) (modifieddesc) Date modified (newest first) (createdasc) Date created (oldest first) This answer is useful 99 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/38453573/timeline) Show activity on this post. Like you said docker ps -a will show stopped and running containers (all the containers). The following command will only show you the stopped containers. docker ps -a | grep Exit Now you're able to perform docker logs container-id on your container to see what is going wrong. (https://stackoverflow.com/a/38453573) (Short permalink to this answer) Share (https://stackoverflow.com/posts/38453573/edit) Improve this answer Follow Follow this answer to receive notifications (https://stackoverflow.com/posts/38453573/revisions) (show all edits to this post) edited (2024-04-04 18:33:58Z) Apr 4, 2024 at 18:33 (https://stackoverflow.com/users/3397771/76484) (76484's user avatar) (https://stackoverflow.com/users/3397771/76484) 76484 (reputation score) 9,003 (3 gold badges) 3 3 gold badges (21 silver badges) 21 21 silver badges (32 bronze badges) 32 32 bronze badges answered (2016-07-19 08:46:01Z) Jul 19, 2016 at 8:46 (https://stackoverflow.com/users/4525448/lvthillo) (lvthillo's user avatar) (https://stackoverflow.com/users/4525448/lvthillo) lvthillo lvthillo (reputation score 30,999) 31k (15 gold badges) 15 15 gold badges (101 silver badges) 101 101 silver badges (135 bronze badges) 135 135 bronze badges 0 (Use comments to ask for more information or suggest improvements. Avoid comments like “+1” or “thanks”.) Add a comment | (Expand to show all comments on this post) This answer is useful 17 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/62517345/timeline) Show activity on this post. Best way to only show stopped containers is to run the following command: docker container ls -f status=exited -a (https://stackoverflow.com/a/62517345) (Short permalink to this answer) Share (https://stackoverflow.com/posts/62517345/edit) Improve this answer Follow Follow this answer to receive notifications answered (2020-06-22 14:57:19Z) Jun 22, 2020 at 14:57 (https://stackoverflow.com/users/8428508/greg-w) (Greg W's user avatar) (https://stackoverflow.com/users/8428508/greg-w) Greg W Greg W (reputation score) 171 (1 silver badge) 1 1 silver badge (2 bronze badges) 2 2 bronze badges (Use comments to ask for more information or suggest improvements. Avoid comments like “+1” or “thanks”.) Add a comment | (Expand to show all comments on this post) This answer is useful 13 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/54496880/timeline) Show activity on this post. Another option not mentioned in the answers above is: docker container list --all It was added in Docker 1.13 (January 2017), and seems to be (https://blog.docker.com/2017/01/whats-new-in-docker-1-13/) the recommended syntax : In Docker 1.13, we regrouped every command to sit under the logical object it’s interacting with. For example list and startof containers are now subcommands of docker container and history is a subcommand of docker image. docker container list docker container start docker image history These changes let us clean up the Docker CLI syntax, improve help text and make Docker simpler to use. The old command syntax is still supported, but we encourage everybody to adopt the new syntax . (https://stackoverflow.com/a/54496880) (Short permalink to this answer) Share (https://stackoverflow.com/posts/54496880/edit) Improve this answer Follow Follow this answer to receive notifications (https://stackoverflow.com/posts/54496880/revisions) (show all edits to this post) edited (2020-06-20 09:12:55Z) Jun 20, 2020 at 9:12 (https://stackoverflow.com/users/-1/community) (Community's user avatar) (https://stackoverflow.com/users/-1/community) Community (Community Bot — not a real person. Replies to this bot are not monitored.) Bot (reputation score) 1 (1 silver badge) 1 1 silver badge answered (2019-02-02 19:46:56Z) Feb 2, 2019 at 19:46 (https://stackoverflow.com/users/4171578/amade) (Amade's user avatar) (https://stackoverflow.com/users/4171578/amade) Amade Amade (reputation score) 4,008 (2 gold badges) 2 2 gold badges (29 silver badges) 29 29 silver badges (55 bronze badges) 55 55 bronze badges (Use comments to ask for more information or suggest improvements. Avoid comments like “+1” or “thanks”.) Add a comment | (Expand to show all comments on this post) This answer is useful 8 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/38453576/timeline) Show activity on this post. Well you gave yourself the answer: Info of Container To show running Containers. With -a option, it shows running and stopped Containers. docker ps So try sudo docker ps -a (https://stackoverflow.com/a/38453576) (Short permalink to this answer) Share (https://stackoverflow.com/posts/38453576/edit) Improve this answer Follow Follow this answer to receive notifications answered (2016-07-19 08:46:09Z) Jul 19, 2016 at 8:46 (https://stackoverflow.com/users/1830293/daxaholic) (DAXaholic's user avatar) (https://stackoverflow.com/users/1830293/daxaholic) DAXaholic DAXaholic (reputation score 35,578) 35.6k (6 gold badges) 6 6 gold badges (82 silver badges) 82 82 silver badges (77 bronze badges) 77 77 bronze badges 2 No, because it shows all containers, with running containers cluttering the list. It's as if someone asked how to search for file(s) in a directory and you told them to just run the tree command and spot it... – (https://stackoverflow.com/users/4470653/p0358) (154 reputation) p0358 Commented (2022-04-07 11:57:40Z, License: CC BY-SA 4.0) Apr 7, 2022 at 11:57 My understanding was that one misunderstood the -a option "In the documentation Docker Cheat Sheet with examples I can only find an example of how to show running containers". "-a" is not about showing only running (which was also emphasized) containers, but to show all of them. BTW: Comments like yours are absolutely not helpful for the overall SO community and is one of the reasons why I significantly reduced my time here. It seems many are here just to foster dispute ... – (https://stackoverflow.com/users/1830293/daxaholic) (35,578 reputation) DAXaholic Commented (2022-04-19 05:46:09Z, License: CC BY-SA 4.0) Apr 19, 2022 at 5:46 (Use comments to ask for more information or suggest improvements. Avoid comments like “+1” or “thanks”.) Add a comment | (Expand to show all comments on this post) This answer is useful 5 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/38453981/timeline) Show activity on this post. If docker ps -a isn't showing anything after a machine restart, try restarting the Docker daemon (happens sometime to me too after a shutdown). (https://stackoverflow.com/a/38453981) (Short permalink to this answer) Share (https://stackoverflow.com/posts/38453981/edit) Improve this answer Follow Follow this answer to receive notifications (https://stackoverflow.com/posts/38453981/revisions) (show all edits to this post) edited (2018-07-23 19:23:02Z) Jul 23, 2018 at 19:23 (https://stackoverflow.com/users/63550/peter-mortensen) (Peter Mortensen's user avatar) (https://stackoverflow.com/users/63550/peter-mortensen) Peter Mortensen (reputation score 31,604) 31.6k (22 gold badges) 22 22 gold badges (110 silver badges) 110 110 silver badges (133 bronze badges) 133 133 bronze badges answered (2016-07-19 09:03:42Z) Jul 19, 2016 at 9:03 (https://stackoverflow.com/users/6376955/zeromus) (Zeromus's user avatar) (https://stackoverflow.com/users/6376955/zeromus) Zeromus Zeromus (reputation score) 4,542 (8 gold badges) 8 8 gold badges (33 silver badges) 33 33 silver badges (41 bronze badges) 41 41 bronze badges 1 I dont know how and why but it worked for me! Thanks! – (https://stackoverflow.com/users/4611211/kevin-kouketsu) (826 reputation) Kevin Kouketsu Commented (2021-11-25 10:48:33Z, License: CC BY-SA 4.0) Nov 25, 2021 at 10:48 (Use comments to ask for more information or suggest improvements. Avoid comments like “+1” or “thanks”.) Add a comment | (Expand to show all comments on this post) This answer is useful 0 (This answer is not useful) Save this answer. (Loading when this answer was accepted…) (https://stackoverflow.com/posts/78723822/timeline) Show activity on this post. Show container id of only stop container docker ps -a | grep Exited | awk '{print$1}' Restart stop container only docker restart $(docker ps -a | grep Exited | awk '{print$1}' ) (https://stackoverflow.com/a/78723822) (Short permalink to this answer) Share (https://stackoverflow.com/posts/78723822/edit) Improve this answer Follow Follow this answer to receive notifications (https://stackoverflow.com/posts/78723822/revisions) (show all edits to this post) edited (2024-07-09 18:37:08Z) Jul 9, 2024 at 18:37 (https://stackoverflow.com/users/14267427/tyler2p) (Tyler2P's user avatar) (https://stackoverflow.com/users/14267427/tyler2p) Tyler2P (reputation score) 2,370 (30 gold badges) 30 30 gold badges (25 silver badges) 25 25 silver badges (33 bronze badges) 33 33 bronze badges answered (2024-07-09 05:37:35Z) Jul 9, 2024 at 5:37 (https://stackoverflow.com/users/26282103/ibrahim) (ibrahim's user avatar) (https://stackoverflow.com/users/26282103/ibrahim) ibrahim ibrahim (reputation score) 1 (2 bronze badges) 2 2 bronze badges (Use comments to ask for more information or suggest improvements. Avoid comments like “+1” or “thanks”.) Add a comment | (Expand to show all comments on this post) Your Answer Draft saved Draft discarded Sign up or (https://stackoverflow.com/users/login?ssrc=question_page&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2f38453308%2fshow-stopped-docker-containers%23new-answer) log in Sign up using Google Sign up using Email and Password Submit Post as a guest Name Email Required, but never shown Post as a guest Name () () Email Required, but never shown () () Post Your Answer Discard By clicking “Post Your Answer”, you agree to our (https://stackoverflow.com/legal/terms-of-service/public) terms of service and acknowledge you have read our (https://stackoverflow.com/legal/privacy-policy) privacy policy . Start asking to get answers Find the answer to your question by asking. (https://stackoverflow.com/questions/ask) Ask question Explore related questions (https://stackoverflow.com/questions/tagged/docker) (show questions tagged 'docker') docker See similar questions with these tags. The Overflow Blog (https://stackoverflow.blog/2025/04/28/how-self-supervised-language-revolutionized-natural-language-processing-and-gen-ai/?cb=1) (How self-supervised language revolutionized natural language processing and gen AI) How self-supervised language revolutionized natural language processing and... (https://stackoverflow.blog/2025/04/29/we-re-not-replacing-you-we-re-with-you-where-ai-meets-infrastructure/?cb=1) “We’re not replacing you; we’re with you”: Where AI meets infrastructure Featured on Meta (Meta Stack Exchange) (https://meta.stackexchange.com/questions/408576/updates-to-advertising-guidelines?cb=1) Updates to advertising guidelines (Meta Stack Exchange) (https://meta.stackexchange.com/questions/408584/evolving-comments-an-experiment-to-encourage-engagement-and-follow-up-questions?cb=1) Evolving comments: An experiment to encourage engagement and follow-up questions (Meta Stack Overflow) (https://meta.stackoverflow.com/questions/421831/policy-generative-ai-e-g-chatgpt-is-banned?cb=1) Policy: Generative AI (e.g., ChatGPT) is banned (Meta Stack Overflow) (https://meta.stackoverflow.com/questions/433648/discussions-learnings-and-potential-next-steps?cb=1) Discussions learnings and potential next steps (https://chat.stackoverflow.com/) (22 users active in 18 rooms the last 60 minutes) 22 people chatting Related (https://stackoverflow.com/q/25754222?rq=3) (Question score (upvotes - downvotes)) 5 (https://stackoverflow.com/questions/25754222/viewing-output-of-stopped-docker-container?rq=3) Viewing output of stopped Docker container (https://stackoverflow.com/q/27380641?rq=3) (Question score (upvotes - downvotes)) 435 (https://stackoverflow.com/questions/27380641/see-full-command-of-running-stopped-container-in-docker?rq=3) See full command of running/stopped container in Docker (https://stackoverflow.com/q/30231187?rq=3) (Question score (upvotes - downvotes)) 300 (https://stackoverflow.com/questions/30231187/list-only-stopped-docker-containers?rq=3) List only stopped Docker containers (https://stackoverflow.com/q/48092927?rq=3) (Question score (upvotes - downvotes)) 1 (https://stackoverflow.com/questions/48092927/how-to-get-the-status-of-stopped-processes-on-using-docker-restart-command?rq=3) How to get the status of stopped processes on using docker restart command (https://stackoverflow.com/q/48833905?rq=3) (Question score (upvotes - downvotes)) 108 (https://stackoverflow.com/questions/48833905/how-to-list-files-in-a-stopped-docker-container?rq=3) How to list files in a stopped Docker container (https://stackoverflow.com/q/49057364?rq=3) (Question score (upvotes - downvotes)) 4 (https://stackoverflow.com/questions/49057364/check-if-docker-container-is-stopped-or-failed?rq=3) Check if docker container is stopped or failed (https://stackoverflow.com/q/57909528?rq=3) (Question score (upvotes - downvotes)) 0 (https://stackoverflow.com/questions/57909528/how-to-check-if-a-docker-container-is-done?rq=3) How to check if a docker container is done (https://stackoverflow.com/q/58022389?rq=3) (Question score (upvotes - downvotes)) 2 (https://stackoverflow.com/questions/58022389/is-there-an-api-for-fetching-stopped-containers-list?rq=3) Is there an API for fetching stopped containers list (https://stackoverflow.com/q/63102199?rq=3) (Question score (upvotes - downvotes)) 0 (https://stackoverflow.com/questions/63102199/docker-ps-shows-stopped-containers-too?rq=3) docker ps shows stopped containers too (https://stackoverflow.com/q/65953634?rq=3) (Question score (upvotes - downvotes)) 10 (https://stackoverflow.com/questions/65953634/how-do-i-inspect-the-stopped-docker-container-files?rq=3) How do I inspect the stopped docker container files (https://stackexchange.com/questions?tab=hot) Hot Network Questions (Law Stack Exchange) (https://law.stackexchange.com/questions/108490/is-termination-of-employment-for-refusal-to-work-overtime-legal) Is termination of employment for refusal to work overtime legal? (Super User) (https://superuser.com/questions/1894844/autohotkey-keyboard-shortcut-not-captured-when-a-software-ran-as-administrator-h) AutoHotkey keyboard shortcut not captured when a software ran as administrator has the focus (Mathematics Stack Exchange) (https://math.stackexchange.com/questions/5060160/can-the-irrationals-be-partitioned-into-dense-disjoint-subsets) Can the irrationals be partitioned into dense, disjoint subsets? (Academia Stack Exchange) (https://academia.stackexchange.com/questions/218145/revising-part-of-a-manuscript-not-covered-by-the-referee-report) Revising part of a manuscript not covered by the referee report (Chess Stack Exchange) (https://chess.stackexchange.com/questions/46932/why-is-qxb2-so-much-better-than-bxb2) Why is Qxb2 so much better than Bxb2? (Home Improvement Stack Exchange) (https://diy.stackexchange.com/questions/317381/what-is-this-orange-button-on-my-antique-black-decker-drill) What is this orange button on my antique Black & Decker drill? (Unix & Linux Stack Exchange) (https://unix.stackexchange.com/questions/794316/why-linux-read-avoids-using-full-2-gib-in-one-call) Why Linux read() avoids using full 2 GiB in one call (Physics Stack Exchange) (https://physics.stackexchange.com/questions/848666/what-is-induced-atmospheric-vibration) What is "Induced Atmospheric Vibration"? (Worldbuilding Stack Exchange) (https://worldbuilding.stackexchange.com/questions/266153/how-could-technological-development-be-significantly-accelerated-without-a-major) How could technological development be significantly accelerated without a major war? (Travel Stack Exchange) (https://travel.stackexchange.com/questions/195497/travelling-to-us-by-road-by-personal-car-and-leaving-by-personal-car) Travelling to US by road by personal car and leaving by personal car (Biblical Hermeneutics Stack Exchange) (https://hermeneutics.stackexchange.com/questions/103751/does-exodus-3116-teach-that-the-old-covenant-is-eternal) Does Exodus 31:16 teach that the old covenant is eternal? (English Language Learners Stack Exchange) (https://ell.stackexchange.com/questions/364598/can-we-have-direct-or-indirect-speech-after-the-verb-lie) Can we have direct or indirect speech after the verb "lie"? (The Workplace Stack Exchange) (https://workplace.stackexchange.com/questions/200804/how-to-handle-teammates-pressuring-me-even-publicly-to-redo-my-work-after-i-al) How to handle teammates pressuring me (even publicly) to redo my work after I already explained my reasoning? (Electrical Engineering Stack Exchange) (https://electronics.stackexchange.com/questions/744888/what-is-this-3-pole-led-striplight-mains-connector) What is this 3-pole LED striplight mains connector? (Christianity Stack Exchange) (https://christianity.stackexchange.com/questions/106069/why-would-the-forthcoming-papal-election-still-be-valid-if-more-than-120-cardina) Why would the forthcoming papal election still be valid if more than 120 Cardinals vote in it, against Universi Dominici Gregis paragraph 33? (Electrical Engineering Stack Exchange) (https://electronics.stackexchange.com/questions/744948/identify-component-with-marking-hl18g) Identify component with marking HL18G (Skeptics Stack Exchange) (https://skeptics.stackexchange.com/questions/57865/did-pope-francis-die-with-only-100-cash-and-no-other-assets) Did Pope Francis die with only $100 cash and no other assets? (The Great Outdoors Stack Exchange) (https://outdoors.stackexchange.com/questions/30167/multiday-hike-in-uk-with-children) Multiday hike in UK with children (French Language Stack Exchange) (https://french.stackexchange.com/questions/55778/confusion-about-conjugation-and-verb-versus-adjective-versions-of-the-same-word) Confusion about conjugation and verb versus adjective versions of the same word (Code Review Stack Exchange) (https://codereview.stackexchange.com/questions/295999/slow-sql-query-with-nested-subquery) Slow SQL query with nested subquery (Server Fault) (https://serverfault.com/questions/1180208/whois-query-to-app-tld-gives-getaddrinfowhois-nic-app-name-or-service-not-k) Whois Query to .app TLD gives "getaddrinfo(whois.nic.app): Name or service not known" (TeX - LaTeX Stack Exchange) (https://tex.stackexchange.com/questions/741663/fill-a-space-made-by-three-arcs) Fill a space made by three arcs (Mi Yodeya) (https://judaism.stackexchange.com/questions/149159/what-is-%d7%9c%d7%95-%d7%a0%d7%99%d7%9e%d7%90) What is ל"ו נימא (Science Fiction & Fantasy Stack Exchange) (https://scifi.stackexchange.com/questions/296270/does-logan-age-four-years-or-more-or-do-they-adjust-his-life-clock) Does Logan age four years (or more), or do they adjust his life clock? (https://stackoverflow.com/feeds/question/38453308) (Feed of this question and its answers) Question feed Subscribe to RSS Question feed To subscribe to this RSS feed, copy and paste this URL into your RSS reader. (https://stackoverflow.com/feeds/question/38453308) () (https://stackoverflow.com/) (https://stackoverflow.com/) Stack Overflow (https://stackoverflow.com/questions) Questions (https://stackoverflow.com/help) Help (https://chat.stackoverflow.com/?tab=site&host=stackoverflow.com) Chat (https://stackoverflow.co/) Products (https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=teams) Teams (https://stackoverflow.co/advertising/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=advertising) Advertising (https://stackoverflow.co/advertising/employer-branding/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=talent) Talent (https://stackoverflow.co/) Company (https://stackoverflow.co/) About (https://stackoverflow.co/company/press/) Press (https://stackoverflow.co/company/work-here/) Work Here (https://stackoverflow.com/legal) Legal (https://stackoverflow.com/legal/privacy-policy) Privacy Policy (https://stackoverflow.com/legal/terms-of-service/public) Terms of Service (https://stackoverflow.com/contact) Contact Us Your Privacy Choices (https://stackoverflow.com/legal/cookie-policy) Cookie Policy (https://stackexchange.com/) Stack Exchange Network (https://stackexchange.com/sites#technology) Technology (https://stackexchange.com/sites#culturerecreation) Culture & recreation (https://stackexchange.com/sites#lifearts) Life & arts (https://stackexchange.com/sites#science) Science (https://stackexchange.com/sites#professional) Professional (https://stackexchange.com/sites#business) Business (https://api.stackexchange.com/) API (https://data.stackexchange.com/) Data (https://stackoverflow.blog/?blb=1) Blog (https://www.facebook.com/officialstackoverflow/) Facebook (https://twitter.com/stackoverflow) Twitter (https://linkedin.com/company/stack-overflow) LinkedIn (https://www.instagram.com/thestackoverflow) Instagram Site design / logo © 2025 Stack Exchange Inc; user contributions licensed under (https://stackoverflow.com/help/licensing) CC BY-SA . rev 2025.4.29.25785 By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our (https://stackoverflow.com/legal/cookie-policy) Cookie Policy . Accept all cookies Necessary cookies only Customize settings