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.