Skip to content

Instantly share code, notes, and snippets.

@2j2e
Created October 11, 2016 15:33
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 2j2e/c5ed8062982270a3578268619c432c8f to your computer and use it in GitHub Desktop.
Save 2j2e/c5ed8062982270a3578268619c432c8f to your computer and use it in GitHub Desktop.
Django CMS on Docker: mysql config
DATABASES = {
'default': {
'HOST': 'mysql',
'ENGINE': 'django.db.backends.mysql',
'NAME': 'cms',
'USER': 'root',
'PASSWORD': 'secretpassword',
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment