Skip to content

Instantly share code, notes, and snippets.

@kkonyshev
Created July 31, 2018 19:51
Show Gist options
  • Save kkonyshev/8db79f465c5a3c6ba166fdfaf8a11e32 to your computer and use it in GitHub Desktop.
Save kkonyshev/8db79f465c5a3c6ba166fdfaf8a11e32 to your computer and use it in GitHub Desktop.
version: '3'
services:
mysql:
container_name: "mysql_db"
image: "mysql:latest"
environment:
MYSQL_DATABASE: "db"
MYSQL_USER: "dbuser"
MYSQL_PASSWORD: "password"
MYSQL_ROOT_PASSWORD: "random"
ports:
- "3306:3306"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment