Skip to content

Commit

Permalink
Add Minio (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiavrammsd authored Apr 4, 2020
1 parent 879412f commit ef9106a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ services:
- [Memcached](#Memcached)
- [Redis](#Redis)
- [Minio](#Minio)
#### Memcached
```yaml
Expand Down Expand Up @@ -380,6 +381,34 @@ volumes:
redis:
```
#### Minio
```yaml
services:
minio:
image: minio/minio:RELEASE.2020-04-02T21-34-49Z
restart: unless-stopped
ports:
- "9001:9000"
volumes:
- data1-1:/data1
- data1-2:/data2
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: minio123
command: server start
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 20s
retries: 3

volumes:
data1-1:
data1-2:
```
Source: https://github.com/minio/minio/blob/master/docs/orchestration/docker-compose/docker-compose.yaml
### Search
- [ELK Stack: Elasticsearch, Logstash, Kibana](#ELK)
Expand Down

0 comments on commit ef9106a

Please sign in to comment.