I need to map the MinIO save path to the host, with the following syntax (docker-compose.yam) on my linux machine it works while on the Azure app service it doesn't (all other settings in the next example work only volume settings not) why?
version: '3.7'
services:
app-minio:
image: mysite.azurecr.io/minio:latest
command: server /data
ports:
- "80:9000"
volumes:
- data1:/data
volumes:
data1:
driver: local
driver_opts:
type: none
device: /home/minio-data
o: bind