https://github.com/kubestone/fio-docker
fio docker image
https://github.com/kubestone/fio-docker
benchmark docker filesystem fio kubernetes performance
Last synced: 4 months ago
JSON representation
fio docker image
- Host: GitHub
- URL: https://github.com/kubestone/fio-docker
- Owner: kubestone
- License: apache-2.0
- Created: 2019-08-05T06:47:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-15T11:12:41.000Z (over 4 years ago)
- Last Synced: 2023-03-12T02:11:55.068Z (over 3 years ago)
- Topics: benchmark, docker, filesystem, fio, kubernetes, performance
- Language: Dockerfile
- Homepage:
- Size: 11.7 KB
- Stars: 9
- Watchers: 3
- Forks: 14
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fio-docker
[](https://hub.docker.com/r/xridge/fio)
[](https://hub.docker.com/r/xridge/fio)
[](https://www.apache.org/licenses/LICENSE-2.0)
fio Docker Image based on Alpine Linux.
## Usage
Run sample fio job file without volume mount (read speed inside docker):
```bash
$ docker run xridge/fio /jobs/rand-read.fio
```
Run sample fio job file with volume mount:
```bash
$ docker run -v $(pwd)/data:/data xridge/fio /jobs/rand-read.fio
```
Run custom fio job file:
```bash
$ docker run -v $(pwd)/data:/data -v /path/to/job.fio:/jobs/job.fio xridge/fio /jobs/job.fio
```
## License
Copyright (c) 2019 [xridge.io](https://xridge.io)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.