Przejdลบ do treล›ci

๐Ÿ› ๏ธ Troubleshooting

Diagnostic checklists and debugging procedures for Dockerโ€‘based environments.


๐Ÿšซ Container Not Starting

  1. Check container logs
    1
    docker logs <container>
    
  2. Inspect container state
    1
    docker inspect <container>
    
  3. Verify exposed ports
  4. Verify network configuration
  5. Check service dependencies (database, API, volumes)

๐Ÿšฆ Traefik Cannot See a Container

  1. Ensure the container is attached to traefik-net
  2. Verify label:
    1
    traefik.enable=true
    
  3. Validate router rule (Host(), PathPrefix(), etc.)
  4. Confirm backend port:
    1
    traefik.http.services.<name>.loadbalancer.server.port=
    

๐Ÿ” TLS / Certificate Issues

  1. Confirm the domain resolves to the server
  2. Ensure tls.certresolver=le is configured
  3. Verify port 443 is open
  4. Check ACME storage permissions and persistence

๐Ÿงฉ Compose Not Starting

1
2
3
4
5
# Validate final Compose configuration
docker compose config

# Rebuild and start
docker compose up --build

๐Ÿ“˜ Additional Topics