TrueCommand Container fails to start

KevDog

Patron
Joined
Nov 26, 2016
Messages
462
Hey I've been running the truecommand docker container for awhile -- more as a hobbyist than anything -- but the container won't start for me.

Here is my docker-compose.yml relevant section relating to true command:

Code:
  truecommand:
    image: ixsystems/truecommand:nightly
    container_name: truecommand
    restart: unless-stopped
    networks:
      - net
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.truecommand.rule=Host(`truecommand.xxx.com`)"
      - "traefik.http.routers.truecommand.entrypoints=web,websecure"
      - "traefik.http.routers.truecommand.tls=true"
      - "traefik.http.routers.truecommand.tls.options=modern@file"
      - "traefik.http.routers.truecommand.tls.certresolver=le"
      - "traefik.http.routers.truecommand.tls.domains[0].main=truecommand.xxx.com"
      - "traefik.http.routers.truecommand.tls.domains[0].sans=truecommand.xxx.com"
      - "traefik.http.routers.truecommand.service=truecommand"
      - "traefik.http.services.truecommand.loadbalancer.server.port=80"
      - "traefik.docker.network=net"
    volumes:
      - /var/truecommand:/data
    environment:
      - TZ=America/Chicago


I don't think there is anything too exotic in the compose section other than I'm running the nightly image

I pulled the nightly image however curiously its from two months ago (weird for a nightly):

Code:
# docker image ls
ixsystems/truecommand       nightly       132af83a2afd   2 months ago    1GB


Anyway when trying to start the container, I'm getting this:

Code:
Starting TrueCommand Middleware...
  Version: Master
  BuildDate: 20220622
[Sep  2 10:47:09.048509] Switching Log Level -> warning
[Sep  2 10:47:09.052960] Starting file database migration
[Sep  2 10:47:09.053571] Finished file database migration
[Sep  2 10:47:09.114235][ERROR] rrdcached died. Restarting in 10s - (*exec.ExitError)(exit status 1)

[Sep  2 10:47:09.136967] 85a77ddb-3744-4a73-aab9-d09c0249a805 Connecting server freenas.gohilton.com
[Sep  2 10:47:12.442510] Loading internal reports
[Sep  2 10:47:12.598108][ERROR] Unable to start webserver - (*exec.ExitError)(exit status 1)

[Sep  2 10:47:12.598317] Cleaning up...
[Sep  2 10:47:12.598486][ERROR] Failed to get smart test results (*errors.errorString)(operation timed out)

[Sep  2 10:47:12.600181][ERROR] 85a77ddb-3744-4a73-aab9-d09c0249a805 Failed to get datastore dump (*errors.errorString)(operation timed out)

[Sep  2 10:47:12.600387][ERROR] Failed to fetch update info (*url.Error)(Get "https://update-tc.ixsystems.com/tc-update-info.json": context canceled)

[Sep  2 10:47:12.600707] Stopping caddy
 
Top