Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 851e2b2

Browse files
committed
Add docker command for minio
1 parent eba2a33 commit 851e2b2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/developer-guide/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,18 @@ For your local development you will need a S3 compatible storage.
2424
We would recommend to use [Minio](https://min.io/download#/) inside a podman or docker container.
2525

2626
```bash
27-
podman run --name minio -p 9000:9000 minio/minio server /data
27+
# if you want to use podman
28+
$ podman run --name minio -p 9000:9000 minio/minio server /data
29+
# if you want to use docker
30+
$ docker run --name minio -p 9000:9000 minio/minio server /data
2831
```
2932

3033
In the Minio management GUI you will need to add a new bucket for the operator.
3134
The default credentials for your minio instance are *minioadmin:minioadmin*.
3235
You might change those.
3336

3437
After setting up your bucket you will need to specify some environment variables to enable the operator to use the bucket.
38+
You could add these to your *.bashrc* or *.zshrc* as well.
3539

3640
```bash
3741
$ export S3_ACCESS_KEY="your-minio-access-key"

0 commit comments

Comments
 (0)