Skip to content

Instantly share code, notes, and snippets.

@kylechase
Created February 13, 2019 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kylechase/176e27825573419faa96811c48c0abdb to your computer and use it in GitHub Desktop.
Save kylechase/176e27825573419faa96811c48c0abdb to your computer and use it in GitHub Desktop.
version: "3.2"
services:
wordpress:
image: wordpress
volumes:
- type: volume
source: www-data
target: /var/www/html
expose:
- 80
restart: unless-stopped
mysql:
image: mysql:5.7
volumes:
- type: volume
source: db-data
target: /var/lib/mysql
networks:
- wordpress
restart: unless-stopped
volumes:
www-data:
db-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment