Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
drupalizer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Drupal
drupalizer
Commits
14109e70
Commit
14109e70
authored
Jan 19, 2018
by
Ernesto Rodriguez Ortiz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/docker-ps-no-truncate' into '2.x'
Add --no-trunc option to 'docker ps' call See merge request
!45
parents
bbe7b6a5
4b091744
Pipeline
#11223
passed with stages
in 1 minute and 3 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
docker.py
docker.py
+1
-1
No files found.
docker.py
View file @
14109e70
...
...
@@ -16,7 +16,7 @@ import helpers as h
def
docker_ps
(
running_only
=
False
):
args
=
''
if
running_only
else
'-a'
result
=
local
(
'docker ps
%
s'
%
args
,
capture
=
True
)
result
=
local
(
'docker ps
--no-trunc
%
s'
%
args
,
capture
=
True
)
lines
=
result
.
stdout
.
splitlines
()
# container name is supposed to be the last column
assert
lines
[
0
]
.
strip
()
.
endswith
(
'NAMES'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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