Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker migration #1043

Merged
merged 3 commits into from
Oct 31, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change docker image name
  • Loading branch information
fengzhou-msft committed Oct 31, 2019
commit 190cddd79d97f8cfad6e9a4fc866bf86f9624f5f
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
-e DOC_REPO_SLUG='MicrosoftDocs/azure-docs-cli' \
-e REPO_LOCATION=/repo \
-v $PWD:/repo \
mcr.microsoft.com/az-ext-list-publisher:0.3.0
mcr.microsoft.com/azure-cli-ext/ext-list-publisher:0.3.0
env: PURPOSE='SyncAvailableExtensionsDoc'
if: repo = Azure/azure-cli-extensions and branch = master and type = cron
fast_finish: true
Expand Down
6 changes: 3 additions & 3 deletions scripts/avail-ext-doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Automatically create PR to update the document listing the available CLI extensi
To build locally:

```bash
docker build . -t mcr.microsoft.com/az-ext-list-publisher:0.3.0
docker build . -t mcr.microsoft.com/azure-cli-ext/ext-list-publisher:0.3.0
```

To run locally:
Expand All @@ -20,7 +20,7 @@ docker run \
-e DOC_REPO_SLUG=$DOC_REPO_SLUG \
-e REPO_LOCATION=/repo \
-v $PWD:/repo \
mcr.microsoft.com/az-ext-list-publisher:0.3.0
mcr.microsoft.com/azure-cli-ext/ext-list-publisher:0.3.0
```

For example:
Expand All @@ -35,5 +35,5 @@ docker run \
-e DOC_REPO_SLUG='azure/azure-docs-cli-python' \
-e REPO_LOCATION=/repo \
-v /Repos/azure-cli-extensions:/repo \
mcr.microsoft.com/az-ext-list-publisher:0.3.0
mcr.microsoft.com/azure-cli-ext/ext-list-publisher:0.3.0
```