Skip to content

Commit

Permalink
Update readme and the images used in docker-compose (#438)
Browse files Browse the repository at this point in the history
* Move GitHub-related files into `.github` folder

* Update Readme

* Update Docker images

* Set localhost address as a code snippet, to avoid link-checker analyzing it
  • Loading branch information
felladrin authored Mar 17, 2023
1 parent f4f131d commit cf5dd3e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 53 deletions.
File renamed without changes.
7 changes: 1 addition & 6 deletions CONTRIBUTING.md → .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
# Contribution Code
| for guideline := range guidelines {
Do Contribution
}

## Welcome
# Contributing to this Provider

Thank you so much for considering to contribute!
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated** <span style="color: #e25555;">&#9829;</span>.
Expand Down
37 changes: 0 additions & 37 deletions .gitpod.yml

This file was deleted.

11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
<a href="https://golang.org/doc/devel/release.html">
<img alt="GitHub go.mod Go version" src="https://img.shields.io/github/go-mod/go-version/aminueza/terraform-provider-minio">
</a>
<a href="https://gitpod.io/#https://github.com/aminueza/terraform-provider-minio">
<img alt="Gitpod Ready-to-Code" src="https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod">
</a>
<a href="https://github.com/aminueza/terraform-provider-minio/actions?query=workflow%3A%22Terraform+Provider+CI%22">
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/aminueza/terraform-provider-minio/go.yml?branch=master">
</a>
Expand Down Expand Up @@ -46,7 +43,7 @@ Made with <span style="color: #e25555;">&#9829;</span> using [Go](https://golang

## Supported Versions

- Terraform v1.3
- Terraform v1.4
- Go v1.19

It doesn't mean that this provider won't run on previous versions of Terraform or Go, though.
Expand Down Expand Up @@ -113,15 +110,15 @@ For testing locally, run the docker compose to spin up a minio server:
docker-compose up
```

Access localhost:8000 on your browser, apply your terraform templates and watch them going live.
Access `http://localhost:8000` on your browser, apply your terraform templates and watch them going live.

## Usage

See our [Examples](./examples/) folder.
See our [examples](./examples/) folder.

## Roadmap

See the [open issues](https://github.com/aminueza/terraform-provider-minio/issues) for a list of proposed features (and known issues). See [CONTRIBUTING](./CONTRIBUTING.md) for more information.
See the [open issues](https://github.com/aminueza/terraform-provider-minio/issues) for a list of proposed features (and known issues). See [CONTRIBUTING](./.github/CONTRIBUTING.md) for more information.

## License

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
minio:
image: docker.io/minio/minio:RELEASE.2022-10-21T22-37-48Z
image: minio/minio:RELEASE.2023-03-13T19-46-17Z
ports:
- "9000:9000"
- "9001:9001"
Expand All @@ -13,7 +13,7 @@ services:
MINIO_NOTIFY_WEBHOOK_ENDPOINT_primary: https://webhook.example.com
command: server --console-address :9001 /data{0...3}
adminio-ui:
image: docker.io/rzrbld/adminio-ui:v1.93
image: rzrbld/adminio-ui:v1.93-210123
environment:
API_BASE_URL: "http://localhost:8080"
ADMINIO_MULTI_BACKEND: "false"
Expand All @@ -22,7 +22,7 @@ services:
ports:
- "8000:80"
adminio-api:
image: docker.io/rzrbld/adminio-api:v1.84
image: rzrbld/adminio-api:v1.84-210123
environment:
MINIO_ACCESS: minio
MINIO_SECRET: minio123
Expand Down

0 comments on commit cf5dd3e

Please sign in to comment.