darkhold icon indicating copy to clipboard operation
darkhold copied to clipboard

Admin password

Open svperbugoy opened this issue 1 year ago • 12 comments

whats the default password? Uploading Screenshot 2024-05-25 at 1.42.26 PM.png…

svperbugoy avatar May 25 '24 09:05 svperbugoy

it should be admin

surajcm avatar May 26 '24 16:05 surajcm

Hello, for docker I can't use the credentials [email protected] admin. Did I miss something? thanks

noubs33 avatar Feb 04 '25 08:02 noubs33

I guess I haven't update the docker image in a while, let me try pushing a new image.

surajcm avatar Feb 04 '25 16:02 surajcm

I just pushed a new image, please check

surajcm avatar Feb 04 '25 16:02 surajcm

Thank you very much

noubs33 avatar Feb 04 '25 17:02 noubs33

WARNING: The requested image's platform (linux/arm64) does not match the detected host platform (linux/amd64/v3) and no specific platform was requested exec /start.sh: exec format error

noubs33 avatar Feb 05 '25 10:02 noubs33

I'm sorry I missed it. I was using my Mac to create images. I have a Linux box available, but it is remote, and I will be able to access it only next week.

surajcm avatar Feb 09 '25 13:02 surajcm

Thank you very much

noubs33 avatar Feb 10 '25 09:02 noubs33

Can you try it now (try puling the new image) ?

surajcm avatar Feb 21 '25 17:02 surajcm

Thank you for your understanding but it is not working yet. Sorry

docker run --name Darkhold -p 8181:8181/tcp surajcm/darkhold xargs is not available exit status 1

noubs33 avatar Feb 26 '25 10:02 noubs33

docker run --name Darkhold -p 8181:8181/tcp surajcm/darkhold xargs is not available exit status 1

With help of AI I was able to fix it . You need to add this to your compose file

`entrypoint: ["/bin/sh", "-c", "microdnf install -y findutils && exec /start.sh"]

The full compose file:

services:
  darkhold:
    image: surajcm/darkhold
    container_name: darkhold
    volumes:
      - ./db:/tmp/db
    ports:
      - 8181:8181/tcp
    restart: unless-stopped
    entrypoint: ["/bin/sh", "-c", "microdnf install -y findutils && exec /start.sh"]

` Explanation: "The xargs utility is part of the findutils package, which is typically present in most Linux distributions but omitted from some slim or minimal images to reduce their size"

TheNomad11 avatar May 27 '25 20:05 TheNomad11

Thank you. I will push this change

surajcm avatar May 30 '25 07:05 surajcm