Drupal Docker以卷的形式安装Azure文件共享

问题描述 投票:0回答:1

我正在尝试将Azure文件共享作为Drupal的卷挂载在Docker compose中

我正在寻找有关如何安装Azure卷的答案

version: '3'
services:
  drupal:
    image: drupal:latest
    ports:
      - 80:80
    volumes:
      - drupal_modules:/var/www/html/modules
      - drupal_profiles:/var/www/html/profiles
      - drupal_themes:/var/www/html/themes
      - drupal_sites:/var/www/html/sites
    restart: always

  postgres:
    image: postgres:10
    environment:
      POSTGRES_PASSWORD: your_postgres_password
    volumes:
        - db_data:/var/lib/postgresql/data
    restart: always

volumes:
  drupal_modules:
  drupal_profiles:
  drupal_themes:
  drupal_sites:
  db_data:
azure drupal docker-compose azure-storage mount
1个回答
0
投票

有类似的要求..您找到方法了吗?

© www.soinside.com 2019 - 2024. All rights reserved.