- Docker Desktop for Windows: https://hub.docker.com/editions/community/docker-ce-desktop-windows
- Docker for Beginners: https://docker-curriculum.com/
- Docker Quickstart with WordPress: https://docs.docker.com/compose/wordpress/
- Getting Started with Docker: https://docs.docker.com/get-started/
- hello-world image: https://hub.docker.com/_/hello-world
Last active
December 18, 2018 20:56
-
-
Save sdee3/da63d0d46b073fd4f7c0910275249b2e to your computer and use it in GitHub Desktop.
Essential Docker commands & guides
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
| version: "3.3" | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: somewordpress | |
| MYSQL_DATABASE: wordpress | |
| MYSQL_USER: wordpress | |
| MYSQL_PASSWORD: wordpress | |
| wordpress: | |
| depends_on: | |
| - db | |
| image: wordpress:latest | |
| ports: | |
| - "8000:80" | |
| restart: always | |
| environment: | |
| WORDPRESS_DB_HOST: db:3306 | |
| WORDPRESS_DB_USER: wordpress | |
| WORDPRESS_DB_PASSWORD: wordpress | |
| volumes: | |
| db_data: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment