This file contains hidden or 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
| /* ======================= Improved One Page Checkout with tabs ======================== */ | |
| .checkout-onepage-index .col-main { width: 100%; padding:0; } | |
| .block-progress .block-title { background:none; margin:0 0 34px; padding:0; } | |
| .checkout-onepage-index .col-main { padding:0; border:0; } | |
| .checkout-onepage-index .page-title { padding-right:40px; width:auto; } | |
| .checkout-onepage-index .page-title h1 { background:none; padding:0; } | |
| .opc { position:relative; overflow:hidden; height:970px; } | |
| .opc .buttons-set { margin:15px 0 0; opacity:1!important; } |
This file contains hidden or 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
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |