Admin password
whats the default password?
it should be admin
Hello, for docker I can't use the credentials [email protected] admin. Did I miss something? thanks
I guess I haven't update the docker image in a while, let me try pushing a new image.
I just pushed a new image, please check
Thank you very much
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
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.
Thank you very much
Can you try it now (try puling the new image) ?
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
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"
Thank you. I will push this change