Interacting with a container in Azure Container Instances

Viewed 2698

Is there a way to execute a command in a container hosted in ACI? I'm looking for something like this:

docker container exec [image] [command]
3 Answers

Not yet, but it's on our list. For the moment, the best you can do is SSHing into the container and running your command that way.

Related