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]
You can use the Azure CLI tools, with a command like:
az container exec -g container-group --name container-name --exec-command "/bin/bash"
For more information, see this document: https://docs.microsoft.com/en-us/azure/container-instances/container-instances-exec
However, I've noticed that I currently cannot select the user to run the command as (such as docker exec -u "user").