Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
set name to registry container
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Martinez committed May 6, 2020
1 parent 453d387 commit 7f7cbab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function install_minikube() {
function run_registry() {
core.info(`Running registry...`);
var registryCommand = 'docker';
var registryArgs = ['run', '-d', '-p', '5000:5000', 'registry'];
var registryArgs = ['run', '--name', 'image-registry', '-d', '-p', '5000:5000', 'registry'];
return execute_command(registryCommand, registryArgs);
}

Expand Down

0 comments on commit 7f7cbab

Please sign in to comment.