Rename build_container_options to build_one_off_container_options

.. to better reflect that its scope is limited to one-off execution
(i.e. the "run" command)

Signed-off-by: Sebastian Pipping <sebastian@pipping.org>
This commit is contained in:
Sebastian Pipping 2018-11-26 23:21:26 +01:00
parent 6559af7660
commit e7f82d2989
1 changed files with 2 additions and 2 deletions

View File

@ -872,7 +872,7 @@ class TopLevelCommand(object):
else:
command = service.options.get('command')
container_options = build_container_options(options, detach, command)
container_options = build_one_off_container_options(options, detach, command)
run_one_off_container(
container_options, self.project, service, options,
self.toplevel_options, self.project_dir
@ -1267,7 +1267,7 @@ def build_action_from_opts(options):
return BuildAction.none
def build_container_options(options, detach, command):
def build_one_off_container_options(options, detach, command):
container_options = {
'command': command,
'tty': not (detach or options['-T'] or not sys.stdin.isatty()),