Cannot enable historian core via Docker


version: '2.4'
services:
  ignition:
    build: 
      context: ignition
      args:
          IGNITION_VERSION: 8.3.1
    ports:
      - 80:8088
      - 443:8043
      - 8060:8060
    volumes:
      - ignition-data:/usr/local/bin/ignition/data
    cap_add:
      - SYS_RAWIO
      - CAP_NET_BIND_SERVICE
      - CAP_NET_RAW
    environment:
      - ACCEPT_IGNITION_EULA=Y
      - IGNITION_EDITION=standard
      - TZ=America/Chicago
      - GATEWAY_MODULES_ENABLED=com.inductiveautomation.opcua.drivers.ablegacy,com.inductiveautomation.eam,com.inductiveautomation.opcua.drivers.logix,com.inductiveautomation.opcua,com.inductiveautomation.symbol-factory,com.inductiveautomation.opcua.drivers.tcpudp,com.inductiveautomation.vision,web-browser,com.inductiveautomation.historian,com.inductiveautomation.perspective,com.inductiveautomation.historian.sql
      - DISABLE_QUICKSTART=true
      - GATEWAY_ADMIN_USERNAME=admin
      - GATEWAY_ADMIN_PASSWORD=password
    command: >
      -m 4096
      -- gateway.resolveHostNames=true
      -Dignition.license.leased-activation-terminate-sessions-on-shutdown=true
  
  
volumes:
  ignition-data:

I am having an issue with enabling the historian core for 8.3.x in a docker environment. I have com.inductiveautomation.historian added for the gateway_modules_enabled. When I click on enable module

I get the following error message:

I downloaded the module from the inductive website, restarted the gateway, and I still get the same error. Any help would be greatly appreciated.