Skip to content
This repository has been archived by the owner on May 15, 2020. It is now read-only.

Commit

Permalink
- analyzer restore
Browse files Browse the repository at this point in the history
  • Loading branch information
zoechigist committed Nov 26, 2015
1 parent 8dc41d6 commit d0b2d35
Show file tree
Hide file tree
Showing 9 changed files with 310 additions and 226 deletions.
5 changes: 3 additions & 2 deletions example/images.dart
Expand Up @@ -15,7 +15,7 @@ dynamic main() async {
CreateResponse created =
await conn.createContainer(new CreateContainerRequest()
..image = 'busybox'
..hostConfig.logConfig = <String,String>{'Type': 'json-file'});
..hostConfig.logConfig = <String, String>{'Type': 'json-file'});

// start the container
await conn.start(created.container);
Expand All @@ -24,7 +24,8 @@ dynamic main() async {
Iterable<Container> containers = await conn.containers();

// investigate response
final Container found = containers.firstWhere((Container c) => c.id == created.container.id);
final Container found =
containers.firstWhere((Container c) => c.id == created.container.id);
print('found: ${found.id}, name: ${found.names.join(', ')}\n');

print('all:');
Expand Down

0 comments on commit d0b2d35

Please sign in to comment.