Use Azure Blob Storage ###################### .. note:: It is assumed that you have an Azure account. NearBeach uses Azure's own toolset to connect to Azure Blob storage. `For more information please visit Microsoft's documentation `_ Azure Blob Instructions ======================= Modify your docker-compose file to include the fields * AZURE_STORAGE_CONNECTION_STRING * AZURE_STORAGE_CONTAINER_NAME The following is an example snippet of code .. code-block:: bash version: '3' services: ... nearbeach: image: robotichead/nearbeach:latest container_name: nearbeach environment: - SECRET_KEY=<> - SMTP_EMAIL_HOST=<> - SMTP_EMAIL_PORT=<> - SMTP_EMAIL_HOST_USER=<> - SMTP_EMAIL_HOST_PASSWORD=<> - DB_DATABASE=<> - DB_USER=<> - DB_PASSWORD=<> - DB_HOST=nearbeach-db - DB_ENGINE=mysql - DB_PORT=3306 - ADMIN_USERNAME=<> - ADMIN_EMAIL=<> - CSRF_TRUSTED_URLS=<> - AZURE_STORAGE_CONNECTION_STRING=<> - AZURE_STORAGE_CONTAINER_NAME=<> volumes: ... `How to get Storage Connection String `_ The Azure Storage container name is the Azure storage container.