Merge pull request #9543 from stevenfollis/patch-1

Enhanced Export Artifacts script
This commit is contained in:
Usha Mandya 2019-10-01 13:59:45 +01:00 committed by GitHub
commit 8499c56b48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -60,12 +60,12 @@ Docker Cluster has commands for managing the whole lifecycle of your cluster:
You can export both Terraform and Ansible scripts to deploy certain components standalone or with custom configurations. Use the following commands to export those scripts:
```yaml
docker run -d --name dci --entrypoint sh
docker/cluster:latest -ldocker cp dci:/cluster/terraform terraform
docker cp dci:/cluster/ansible ansible
docker stop dci
docker rm dci
```bash
docker container run --detach --name dci --entrypoint sh docker/cluster:latest
docker container cp dci:/cluster/terraform terraform
docker container cp dci:/cluster/ansible ansible
docker container stop dci
docker container rm dci
```
## Where to go next