Reputation: 149
I have the below docker run command to launch a container:
docker run -d --name selenoid-ui \
--link selenoid \
-p 8080:8080 \
aerokube/selenoid-ui --selenoid-uri=http://selenoid:4444
Any idea where shall I use this docker image specific argument in task definition?
Upvotes: 1
Views: 2205
Reputation: 1040
Put this: Advanced container configuration > Environment > Command
--selenoid-uri=http://selenoid:4444
Upvotes: 1
Reputation: 3552
Use the Command
property in your ContainerDefinition. See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-containerdefinitions.html#cfn-ecs-taskdefinition-containerdefinition-command
Upvotes: 0