I created a docker-compose file to use s3. the file is a follows:
version: "3"
services:
s3:
image: "docker.example.com/minio/minio:latest"
restart: always
networks:
local:
ports:
- "${s3port}:8080"
volumes:
- s3:/data
entrypoint: sh
command: "-c 'mkdir -p /data/proj && /usr/bin/minio server /data'"
env_file:
- ./conf/env.s3
networks:
local:
volumes:
s3:
after that the container restarts continuesly and it says:
/usr/bin/minio: no such file or directory
I think it belongs to path permissions. has anyone any idea?