Skip to content

alexbogovich/docker-minio-github-actions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

jobs:
  example:
    runs-on: ubuntu-latest
    env:
      AWS_ACCESS_KEY_ID: minioadmin
      AWS_SECRET_ACCESS_KEY: minioadmin
    services:
      minio:
        image: ghcr.io/alexbogovich/docker-minio-github-actions
        ports:
          - 9000:9000
    steps:
      - run: curl -v http://127.0.0.1:9000

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Dockerfile 100.0%