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: wordpressdocker-compose.yml
database:
image: mariadb
ports:
- "8081:3306"
environment:
MYSQL_ROOT_PASSWORD: YourSSNGoesHeredatabase
wordpress-site:
image: wordpress
volumes:
- .:/var/www/html
ports:
- "8080:80"
links:
- database:mysql
environment:
WORDPRESS_DB_PASSWORD: YourSSNGoesHerewordpress-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: YourSSNGoesHeredocker-compose.yml
$ docker-compose uphttp://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.