You cannot muster up enough motivation to perform well at a job that you do not enjoy.
If you are living for vacations and weekends, your stuff is broken.
- Gary Vaynerchuck
slides.com/tatemz/wcsac-2016
medium.com/@tatemz
twitter.com/tatemz
https://www.docker.com/products/docker
version: "2"
services:
database:
image: mysql
wordpress-site:
image: wordpress
docker-compose.yml
database:
image: mariadb
ports:
- "8081:3306"
environment:
MYSQL_ROOT_PASSWORD: YourSSNGoesHere
database
wordpress-site:
image: wordpress
volumes:
- .:/var/www/html
ports:
- "8080:80"
links:
- database:mysql
environment:
WORDPRESS_DB_PASSWORD: YourSSNGoesHere
wordpress-site
version: "2"
services:
database:
image: mariadb
ports:
- "8081:3306"
environment:
MYSQL_ROOT_PASSWORD: IsThisSecure?
wordpress-site:
image: wordpress
volumes:
- .:/var/www/html
ports:
- "8080:80"
links:
- database:mysql
environment:
WORDPRESS_DB_PASSWORD: YourSSNGoesHere
docker-compose.yml
$ docker-compose up
http://localhost:8080
volumes:
- "/local/path/:/container/path/"
ports:
- "8080:80"
links:
- "database:mysql"
https://hub.docker.com/_/mysql/
https://hub.docker.com/_/wordpress
https://github.com/docker-library/docs/tree/master/wordpress#how-to-use-this-image
toolaholic: (noun) - A person who, rather than spending time building something awesome, opts to build awesome tools in order to make their dev or build process more awesome in order to build something that will never be as awesome.