my dockercompose file: ```yaml version: "2" services: s3: image: hub..com/xxxx/s3proxy:latest container_name: s3proxy # name: https://github.com/gaul/s3proxy/blob/master/Dockerfile environment: - S3PROXY_AUTHORIZATION=aws-v2-or-v4 - S3PROXY_IDENTITY=hellow - S3PROXY_CREDENTIAL=1234cccc - LOG_LEVEL=debug - S3PROXY_CORS_ALLOW_HEADERS=Authorization ports: - "8080:80" volumes: - /data1/fs:/data networks: default: external: name: s3 ``` then use command `wget localhost:8080/bucket/file1` will directly download the file .. is there an permission check bug here?