Skip to content

Commit

Permalink
Add docker information
Browse files Browse the repository at this point in the history
  • Loading branch information
deleugpn authored Oct 16, 2020
1 parent 6bb3324 commit b014e0f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,16 @@ $minio->disk('my-bucket', function (S3Client $client, string $bucket) {
$this->assertStringContainsString('partial-file-content', $content);
});
```

# Docker Example

```yaml
minio:
image: minio/minio
ports:
- 9000:9000
environment:
- MINIO_ACCESS_KEY=customergauge
- MINIO_SECRET_KEY=phpunit123
command: server /data
```

0 comments on commit b014e0f

Please sign in to comment.