Skip to content

Instantly share code, notes, and snippets.

@vsguts
Created January 16, 2019 21:35
Show Gist options
  • Save vsguts/c49bf3c02f913e40e62b56e9819da139 to your computer and use it in GitHub Desktop.
Save vsguts/c49bf3c02f913e40e62b56e9819da139 to your computer and use it in GitHub Desktop.
MySQL via Docker compose
version: '3.3'
services:
mysql:
image: mysql:5.7.21
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: school
MYSQL_USER: school
MYSQL_PASSWORD: school
volumes:
- mysqldata:/var/lib/mysql
volumes:
mysqldata:
driver: "local"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment