Diskover, white page on login

Hi,
I deployed the diskover container with Elasticsearch

my Elasticsearch run file
#!/bin/bash
workname=elasticsearch
workdir=/home/tim/docker/data/$workname
workpackage=docker.elastic.co/elasticsearch/elasticsearch:7.10.2
PGID=0
PUID=0
docker run -d -h $workname
–restart=always
–name $workname
-p 9200:9200
-p 9300:9300
-v $workdir/esdata:/var/lib/elasticsearch/data
-e TZ=Australia/Queensland
-e PGID=$PGID -e PUID=$PUID
-e discovery.type=single-node
$workpackage

my diskover run
#!/bin/bash
workname=diskover
workdir=/home/tim/docker/data/$workname
workpackage=lscr.io/linuxserver/diskover:latest
extport=8001
intport=80
PGID=1000
PUID=1000
docker run -d -h $workname
–restart=always
–name $workname
-p $extport:$intport
-v $workdir/config:/config
-v $workdir/data:/data
-e TZ=Australia/Queensland
-e PGID=$PGID -e PUID=$PUID
-e ES_HOST=192.168.0.22
-e ES_PORT=9200
$workpackage
The crawl of the data works fine
When I log in all I get is

Just a glance, but elasticsearch doesnt have a PUID or PGID field, you’re missing some mandatory envvars and ulimit settings… I would suggest reading the readme. If you need to deviate from the supported config, that is fine, but when you seek support, you need to ensure you use the supported config. If the supported config doesn’t work, that’s where we dive in.

Also, always ensure you try an inprivate/incognito browser (or a completely different browser) when testing to rule out cache/addon issues.

If, after using the supported config, you still have the issue, please ensure you share the full container logs. I’ll also add that putting the host ip with the port rather than putting them on the same custom bridge is very inefficient. This means that diskover is natting to your docker host, then natting to elasticsearch. The compose example in our readme does not face this issue. You can also create a custom bridge and put both containers in it with docker run using --network

Thanks,
this is my compose I ran

I now get
https://imgur.com/a/4bEtdkK
however, when I select the index and save selection I get
https://imgur.com/a/kjOOa15
502 bad gateway

Logs from diskover I get
https://imgur.com/a/wM3M75R
Elasticsearch
https://imgur.com/a/MtMGoV2

the error.log for nginx is blank

This should get you fixed, Can’t select an index · Issue #101 · diskoverdata/diskover-community (github.com)

We’ll get it fixed on our side asap

closing this and will continue in the discord thread you created.