How to launch docker images with Container Entrypoint or Container Environment Variables

Scorpionhunt

Cadet
Joined
Sep 16, 2022
Messages
4
Hello there,

I am trying to set up a docker container using the launch docker option. The docker image that I want to install is honeygain/honeygain.

According to their website, I have to run the command:
Code:
docker run -d -restart unless-stopped honeygain/honeygain -tou-accept -email EMAIL -pass PASSWORD -device NAME.


The -d and -restart unless-stopped flags are irrelevant or optional. But I'm not sure how to input the other parameters (-tou-accept -email EMAIL -pass PASSWORD -device NAME) when I use the docker launch option in Scale.

I tried to input those values using the Container Environment Variables:
Environment Variable NameEnvironment Variable Value
touaccept
email My Email
passMy Password
deviceTrueNas
But the container is stuck at deploying with the error message: Back-off restarting the failed container.


I would be glad if anyone could help me out.


Many thanks for your help!
 
Top