Skip to content

Commit 656c983

Browse files
committed
Update README.md
Refs #7
1 parent a36a296 commit 656c983

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ $loop = React\EventLoop\Factory::create();
3232
$factory = new Factory($loop);
3333
$client = $factory->createClient();
3434

35-
$client->version()->then(function ($version) {
36-
var_dump($version);
35+
$client->imageSearch('clue')->then(function ($images) {
36+
var_dump($images);
3737
});
3838

3939
$loop->run();
@@ -90,9 +90,13 @@ $client->imageCreate($fromImage, $fromSrc, $repo, $tag, $registry, $registryAuth
9090

9191
$client->info();
9292
$client->version();
93+
94+
// many, many more…
9395
```
9496

95-
Listing all available commands is out of scope here, please refer to the [Remote API documentation](https://docs.docker.com/reference/api/docker_remote_api_v1.15/) or the class outline.
97+
Listing all available commands is out of scope here, please refer to the
98+
[Remote API documentation](https://docs.docker.com/reference/api/docker_remote_api_v1.15/)
99+
or the [class outline](src/Client.php).
96100

97101
#### Promises
98102

0 commit comments

Comments
 (0)