Skip to content

Instantly share code, notes, and snippets.

services:
angular_web:
build: angular/angular
volumes:
- ./angular/angular:/project
- /project/node_modules
apache_php_web:
build: apache-php/app
volumes:
- ./apache-php/app:/var/www/html/
@mkusiciel
mkusiciel / mysql-docker.sh
Created May 1, 2017 06:44 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# 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

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>