Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Azat Alimov
POD
Commits
30525fa6
Commit
30525fa6
authored
4 years ago
by
Bijun Li
Browse files
Options
Download
Plain Diff
Merge branch 'fix-importer-image' into 'dev'
Fix docker image for run_importer See merge request
memri/pod!154
parents
a55cc5ca
06187082
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/services_api.rs
+3
-1
src/services_api.rs
with
3 additions
and
1 deletion
+3
-1
src/services_api.rs
+
3
-
1
View file @
30525fa6
...
...
@@ -82,7 +82,9 @@ pub fn run_importer(
.as_object
()
.expect
(
"Failed to get value"
)
.get
(
"repository"
)
.expect
(
"Failed to get repository for docker image"
);
.expect
(
"Failed to get repository for docker image"
)
.as_str
()
.expect
(
"Failed to get string"
);
let
mut
args
:
Vec
<
String
>
=
Vec
::
new
();
args
.push
(
"run"
.to_string
());
for
arg
in
docker_arguments
(
cli_options
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment