https://github.com/fclairamb/docker-minio-github-actions
https://github.com/fclairamb/docker-minio-github-actions
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fclairamb/docker-minio-github-actions
- Owner: fclairamb
- Created: 2020-05-22T17:15:28.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-01T12:42:24.000Z (over 4 years ago)
- Last Synced: 2025-04-18T17:45:35.537Z (about 1 year ago)
- Language: Dockerfile
- Size: 6.84 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# minio service for github actions
This container is only useful because github actions do not support providing some container args for services.
There's an alternative option: the bitnami/minio but it is VERY slow to start, so you're basically slowing down all your tests.
## Usage
```yaml
jobs:
example:
runs-on: ubuntu-latest
env:
AWS_ACCESS_KEY_ID: minioadmin
AWS_SECRET_ACCESS_KEY: minioadmin
services:
minio:
image: fclairamb/minio-github-actions
ports:
- 9000:9000
steps:
- run: curl -v http://127.0.0.1:9000
```