๐ ๏ธ Troubleshooting
Diagnostic checklists and debugging procedures for Dockerโbased environments.
๐ซ Container Not Starting
- Check container logs
1docker logs <container> - Inspect container state
1docker inspect <container> - Verify exposed ports
- Verify network configuration
- Check service dependencies (database, API, volumes)
๐ฆ Traefik Cannot See a Container
- Ensure the container is attached to
traefik-net - Verify label:
1traefik.enable=true - Validate router rule (
Host(),PathPrefix(), etc.) - Confirm backend port:
1traefik.http.services.<name>.loadbalancer.server.port=
๐ TLS / Certificate Issues
- Confirm the domain resolves to the server
- Ensure
tls.certresolver=leis configured - Verify port 443 is open
- Check ACME storage permissions and persistence
๐งฉ Compose Not Starting
1 2 3 4 5 | |