Welcome to the Linux Foundation Forum!

LFS241 | Ch.22 | V.04.30.2021.pdf | P115

Options

The docker run command might no longer work (not able to access MinIO storage user interface):
docker run -d -p 9000:9000 -v /mnt/data:/data minio/minio server /data

After checking MinIO, the following command works:

docker run \
  -p 9000:9000 \
  -p 9001:9001 \
  --name minio1 \
  -v /mnt/data:/data \
  -e "MINIO_ROOT_USER=minioadmin" \
  -e "MINIO_ROOT_PASSWORD=minioadmin" \
  quay.io/minio/minio server /data --console-address ":9001"

Reference:
https://docs.min.io/docs/minio-docker-quickstart-guide.html

Comments

  • dnate
    dnate Posts: 1
    Options

    Thanks for posting, I ran into the same problem, unfortunately even after getting minio working the rest of the chapter still didn't work as expected. I suppose someone just needs to go through that section and update it entirely.

Categories

Upcoming Training