diff --git a/docs/how-tos/azure-blob.md b/docs/how-tos/azure-blob.md index c4bbee9..e3e5bcc 100644 --- a/docs/how-tos/azure-blob.md +++ b/docs/how-tos/azure-blob.md @@ -11,7 +11,7 @@ As described on local backup section, to change the storage of you backup and us You can also specify a folder where you want to save you data by adding `--path my-custom-path` flag. -## Backup to S3 +## Backup to Azure Blob storage ```yml services: @@ -22,7 +22,7 @@ services: # for a list of available releases. image: jkaninda/mysql-bkup container_name: mysql-bkup - command: backup --storage s3 -d database --path /my-custom-path + command: backup --storage azure -d database --path my-custom-path environment: - DB_PORT=3306 - DB_HOST=mysql @@ -33,10 +33,6 @@ services: - AZURE_STORAGE_CONTAINER_NAME=backup-container - AZURE_STORAGE_ACCOUNT_NAME=account-name - AZURE_STORAGE_ACCOUNT_KEY=Ppby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw== - ## In case you are using S3 alternative such as Minio and your Minio instance is not secured, you change it to true - - AWS_DISABLE_SSL="false" - - AWS_FORCE_PATH_STYLE=true # true for S3 alternative such as Minio - # mysql-bkup container must be connected to the same network with your database networks: - web