This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Change PHP version as you want | |
FROM yiisoftware/yii2-php:7.4-apache | |
RUN install-php-extensions redis gmp | |
RUN sed -i -e 's|/app/web|/app/backend/web|g' /etc/apache2/sites-available/000-default.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This tool help you backup mysql database to google drive | |
# Worked & tested on RHEL/DEB | |
# Folder ID https://drive.google.com/drive/u/0/folders/111111111111111111111111111111111 | |
# That is folder_id (33 chars), make sure is yours => ^_______________________________^ | |
REMOTE_FOLDER=111111111111111111111111111111111 | |
# Your local folder to store some backup, it will be automatically created | |
LOCAL_FOLDER=/root/gdrive |