Coder freeze on "Build enqueued" stage
I am using docker compose deployment setup, and the first template I use is docker template.
After clicking run, the process seems freezed at "Build enqueued" stage forever

1 Reply
Hey! This looks like a known issue where the Web UI doesn't properly show template creation errors - it just hangs at "Build enqueued" instead of displaying the actual problem.
Most likely cause: Docker isn't running or accessible to your Coder server.
Quick fixes to try:
1. Check if Docker is running:
docker info
2. Use the CLI to see the actual error (the UI hides it): coder provisioner jobs list -s pending
and coder provisioner jobs list -s failed
3. Check your docker-compose.yml has the Docker socket mounted: - /var/run/docker.sock:/var/run/docker.sock
under volumes
4. Check Coder container logs: docker compose logs coder
The CLI will show you the real error that the UI is hiding. This UI bug was recently fixed, so updating to the latest Coder version will also help surface errors properly in the web interface. Let me know what the CLI shows!
Let me know if that helps you out.