Skip to content

Instantly share code, notes, and snippets.

@samrocksc
Created February 25, 2019 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samrocksc/a26818c1cdd599aa9f4146e344dd4671 to your computer and use it in GitHub Desktop.
Save samrocksc/a26818c1cdd599aa9f4146e344dd4671 to your computer and use it in GitHub Desktop.
Local Mysql 5.6
version: '3'
services:
mysql:
image: mysql:5.6
restart: unless-stopped
container_name: mysql
ports:
- '3306:3306'
expose:
- '3306'
volumes:
- /tmp/docker/lib/mysql56-data:/var/lib/mysql
env_file:
- ./local.env
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment