# Minio: OSS AWS S3 Alternative

> Launch minio with docker for testing & development
---

Public Demo: [http://sss.pigsty.cc](http://sss.pigsty.cc)

Compose template credential: `minioadmin` / `minioadmin`. The standalone command below uses `admin` / `pigsty.minio`.


![](/img/docs/app/minio.jpeg)


## TL; DR

Launch minio (s3) service on 9000 & 9001

```bash
cd ~/pigsty/app/minio ; docker compose up -d
```

```bash
docker run -p 9000:9000 -p 9001:9001 \
  -e "MINIO_ROOT_USER=admin" \
  -e "MINIO_ROOT_PASSWORD=pigsty.minio" \
  minio/minio server /data --console-address ":9001"
```

The standalone `docker run` example is available at http://10.10.10.10:9000 with user `admin` and password `pigsty.minio`.

```bash
make up         # pull up minio with docker-compose
make run        # launch minio with docker
make view       # print minio access point
make log        # tail -f minio logs
make info       # introspect minio with jq
make stop       # stop minio container
make clean      # remove minio container
make pull       # pull latest minio image
make rmi        # remove minio image
make save       # save minio image to /tmp/minio.tgz
make load       # load minio image from /tmp
```
