Skip to content

Instantly share code, notes, and snippets.

@jaimedantas
Created January 30, 2020 04:08
Show Gist options
  • Save jaimedantas/b35b4d722f1cf343e0198340070a2071 to your computer and use it in GitHub Desktop.
Save jaimedantas/b35b4d722f1cf343e0198340070a2071 to your computer and use it in GitHub Desktop.
Docker compose for MySQL
version : '3'
services:
mysql:
image: mysql:latest
container_name: dev_mysql
environment:
MYSQL_USER: user
MYSQL_PASSWORD: pass
MYSQL_ROOT_PASSWORD: pass
MYSQL_DATABASE: fiiztax
ports:
- "3306:3306"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment