0

I've setup an minio installation via docker on one of my servers. I can access the login screen without a problem. However, when the login itself does not work.

Post "https://example.com:9000/": dial tcp :9000: i/o timeout

What could be the reason for this?

This is my docker-compose.yml

version: '3.7'

services:
  minio:
    image: minio/minio:RELEASE.2022-05-19T18-20-59Z.fips
    command: server -C /etc/minio --address ":9000" --console-address ":9001" /data
    ports:
      - "9000:9000"
      - "9001:9001"
    environment:
      MINIO_SERVER_URL: "https://example.com:9000"
      MINIO_ROOT_USER: "minioadmin"
      MINIO_ROOT_PASSWORD: "minioadmin"
    volumes:
      - minio:/data
      - /etc/letsencrypt:/etc/letsencrypt/
      - /etc/minio:/etc/minio/
      
volumes:
  minio:  

there is also an nginx running on that server but I don't think that's the issue.

Felix D.
  • 133
  • 7

1 Answers1

0

I'm getting the same error since I've added MINIO_SERVER_URL.

But I read that is the way we can get correct share links.

I hope someone else can have good ideas on how to solve that.

Edit: Found a similar issue https://github.com/minio/minio/issues/13859