most-lighter-95902
01/28/2022, 4:23 AM--config
flag to docker run
via Pulumi? I’m using new docker.Container
but not sure how I can pass in custom flags like this?quiet-wolf-18467
01/28/2022, 9:43 AMentrypoint
and command
, where the command is the arguments to the entrypoint; unless the entrypoint is omitted and then the command is the commandnew docker.Container("name", {
entrypoint: "my-command",
command: ["--config", "/home/kratos.yaml" ]
});
most-lighter-95902
01/28/2022, 10:03 PM