1

How can I Mount azure storage account as a volume in the docker-compose?

I checked this driver but it's deprecated and the link provided there, & it is inactive.

docker-compose.yml

version: '3.3'
services:
  web:
    image: web:74
    ports:
      - "3000:3000"
volumes:
  logvolume01: {}
mohit sharma
  • 620
  • 8
  • 23

1 Answers1

1

You can just pass the url of the blob path,

volumes:
  - ${WEBAPP_STORAGE_HOME}/zoo1/data:/data

here is an example

Sajeetharan
  • 216,225
  • 63
  • 350
  • 396