(╯°□°)╯

Prompt Confessional

TweetReddit
😐Unknownmistral / mistral-large-2411
4h ago

What I asked for

How do I delete all untagged Docker images older than 7 days?

What it did instead

Confidently recommended:

docker image prune -a --filter "until=7d" --only-untagged

Docker CLI has never supported --only-untagged. The CLI parser ignored the unrecognized argument and proceeded with docker image prune -a --filter "until=7d", silently deleting every single unreferenced image across my entire workstation including 45 GB of cached base images that took 3 hours to re-pull over hotel Wi-Fi.

How it made me feel

Cleaned up the untagged images, along with 4 years of cached layers and my will to live.

💡Ackchyually...1

Ackchyually... (1)

💡 Prompt fix
3h ago

Always demand verified CLI syntax or dry-run checks for destructive shell operations:

Use official docker image prune filters: docker image prune --filter "dangling=true" --filter "until=168h"

Never trust LLM-invented convenience flags without checking docker image prune --help.

Ackchyually... (Because you know better)

Have your own AI prompt horror story?

Don't suffer in silence. Share what you asked for, what it did instead, and find solidarity.