cloud-integration-beta
cloud-integration-beta copied to clipboard
Docker CLI with ACI integration (beta)
I ran the following given command in the document ```bash curl -L https://raw.githubusercontent.com/docker/aci-integration-beta/main/scripts/install_linux.sh | sh ``` It gives me below error Checks passed! Downloading CLI... curl: no URL specified! curl:...
At the moment you can only build images using a local context and then push them to a registry so that they can be used by ACI. We are thinking...
Some of the Docker commands and flags are specific to local development and workflows and so they are not applicable to ACI. Examples include [`docker image` commands](https://github.com/docker/aci-integration-beta/issues/2). There are also...
Previously we had no `docker start` or `docker stop` support in the Docker ACI integration. This was because ACI does not support a stop or start commands in the same...
With the Compose specification [removing the requirement for the version field](https://github.com/compose-spec/compose-spec/pull/82) in a Compose file, Compose v2 and v3 syntax will be supported by the ACI integration. This is a...
ACI does not support port mapping so commands like `docker run -d -p 8080:80 nginx` will fail. You will need to make sure that your `docker run` commands specify the...
ACI pulls images directly from a container image registry and does not have a cache like that when you work locally. This means that `docker image` commands are not applicable...