skip to Main Content

Simple way to backup/restore Docker named volumes

I have this Docker compose file with named volumes: version: '3' services: db: image: mysql:8.0 container_name: db volumes: - dbdata:/var/lib/mysql wordpress: image: wordpress:5.1.1-fpm-alpine container_name: wordpress volumes: - wordpress:/var/www/html webserver: image: nginx:1.15.12-alpine container_name: webserver volumes: - wordpress:/var/www/html - ./nginx-conf:/etc/nginx/conf.d - certbot-etc:/etc/letsencrypt…

VIEW QUESTION

incremental backup on azure

At 08:00 AM we take a disk snapshot with this azure cli command: az snapshot create -g RG1 -n snapshot_0800 --source DISK1 Can you help me to understand how I can create a snapshot at 09:00 AM to provide an…

VIEW QUESTION

AWS DynamoDB Backup using CDK

I want to create a DynamoDB table and backup using AWS Typescript CDK. Creating DynamoDB using CDK is pretty straightforward, but implementing backup is not easy. Could anyone help me to implement a backup using CDK? I tried to solve…

VIEW QUESTION
Back To Top
Search