Help Requested! Error during Docker Run

Hey all, I'm getting the following error:

panic: runtime error: invalid memory address or nil pointer dereference

[signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x1a78549]

This is happening when I'm trying to run traefik 2.8 in docker.

Anyone run into this?

Docker compose:

version: '3.7'
services:
traefik:
image: traefik:2.8.1
container_name: traefik
restart: always
network_mode: bridge
ports:
- '80:80'
- '8080:8080'
- '443:443'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /mnt/containers/traefik/data/traefik.yml:/traefik.yml
- /mnt/containers/traefik/data/acme.json:/acme.json
- /mnt/containers/traefik/data/logs/traefikLog.log:/traefikLog.log
- /mnt/containers/traefik/data/logs/accessLog.log:/accessLog.log

traefik.yml:

---
global:
  checkNewVersion: true
  sendAnonymousUsage: false

################################################################
# EntryPoints configuration
################################################################

entryPoints:
  web:
    address: ":80"
  websecure:
    address: ":443"

certificatesResolvers:
    leresolver:
      acme:
        email: joshua@cnjmail.com
        storage: acme.json
        httpChallenge:
          entryPoint: web

################################################################
# Traefik logs configuration
################################################################

log:
  level: "TRACE"
  format: 'common'

################################################################
# API and dashboard configuration
################################################################

api:
  insecure: true
  dashboard: true

################################################################
# Ping configuration
################################################################

ping:
  entryPoint: traefik

################################################################
# Docker configuration backend
################################################################

providers:
  docker:
    exposedByDefault: true

Edit traefik.yml and change your log level from trace (not sure this is a supported log level?) to DEBUG and see what comes up in the logs.

Mine looks like this:

log:
  level: DEBUG
  filePath: "/debugLog.log"

From your error it would seem to be a memory issue. Have you checked your system resources? How much free RAM do you have left? What type of system is this running on?