File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -90,10 +90,6 @@ def parse_commandline(args):
90
90
"--rm" ,
91
91
help = "Remove container after session is done" ,
92
92
action = "store_true" )
93
- parser .add_argument (
94
- "--pull" ,
95
- help = "Download latest 'gentoo/stage3-amd64' docker image" ,
96
- action = "store_true" )
97
93
parser .add_argument (
98
94
"--storage-opt" ,
99
95
help = "Storage driver options for all volumes (same as Docker param)" ,
@@ -114,7 +110,11 @@ def parse_commandline(args):
114
110
parser .add_argument (
115
111
"--docker-image" ,
116
112
help = "Specify the docker image to use (default = %(default)s)" ,
117
- default = "gentoo/stage3-amd64" )
113
+ default = "gentoo/stage3" )
114
+ parser .add_argument (
115
+ "--pull" ,
116
+ help = "Download latest docker image" ,
117
+ action = "store_true" )
118
118
119
119
options = parser .parse_args (args )
120
120
Original file line number Diff line number Diff line change @@ -90,4 +90,4 @@ def test_with_vnc(self):
90
90
def test_docker_image (self ):
91
91
options = ebuildtester .parse .parse_commandline (
92
92
self .args + ["--manual" ])
93
- self .assertEqual (options .docker_image , "gentoo/stage3-amd64 " )
93
+ self .assertEqual (options .docker_image , "gentoo/stage3" )
You can’t perform that action at this time.
0 commit comments