This message was deleted.
# general
s
This message was deleted.
q
So Docker uses the concept of
entrypoint
and
command
, where the command is the arguments to the entrypoint; unless the entrypoint is omitted and then the command is the command
It's awful, I know
However, what you wanna do is this:
Copy code
new docker.Container("name", {
  entrypoint: "my-command",
  command: ["--config", "/home/kratos.yaml" ]
});
🙌 1
m
Ah nice - thanks for this
Interesting choice from Docker but this works - thanks!