Skip to content

Instantly share code, notes, and snippets.

@hsimah
Created September 6, 2020 20:38
Show Gist options
  • Save hsimah/94654784a057ed88fc322533ccbdb856 to your computer and use it in GitHub Desktop.
Save hsimah/94654784a057ed88fc322533ccbdb856 to your computer and use it in GitHub Desktop.
Initial docker-compose.yml for WordPress, WSL2 & Docker
version: "3.7"
services:
wordpress:
container_name: www
build:
context: .
dockerfile: ./Dockerfile
links:
- mysql
env_file:
- .env
volumes:
- .:/var/www/html/wp-content/plugins/my-plugin:delegated
mysql:
container_name: db
image: mysql:5.7
env_file:
- .env
volumes:
- database:/var/lib/mysql
volumes:
database:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment