mirror of https://github.com/docker/docs.git
Merge pull request #11259 from docker/nebuk89-add-aci-stop
Update aci-integration.md
This commit is contained in:
commit
f246f59f2b
|
|
@ -110,8 +110,14 @@ docker exec -t <CONTAINER_ID> COMMAND
|
||||||
To stop and remove a container from ACI, run:
|
To stop and remove a container from ACI, run:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
|
docker stop <CONTAINER_ID>
|
||||||
docker rm <CONTAINER_ID>
|
docker rm <CONTAINER_ID>
|
||||||
```
|
```
|
||||||
|
> **Note**
|
||||||
|
>
|
||||||
|
> The stop command in ACI differs from the Moby stop command as a stopped
|
||||||
|
container will not retain its state when it is started again. For more
|
||||||
|
information, see https://github.com/docker/aci-integration-beta/issues/28.
|
||||||
|
|
||||||
## Running Compose applications
|
## Running Compose applications
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue