Roshan Chhetri
Roshan Chhetri

Reputation: 149

Docker image specific argument in ECS task definition

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

Answers (2)

RosAng
RosAng

Reputation: 1040

Put this: Advanced container configuration > Environment > Command

--selenoid-uri=http://selenoid:4444

Upvotes: 1

Related Questions