Skip to content

Instantly share code, notes, and snippets.

@shikhirsingh
Last active October 2, 2017 03:50
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 shikhirsingh/091cb3513a4ace097b0d4d5a3b5dcc9e to your computer and use it in GitHub Desktop.
Save shikhirsingh/091cb3513a4ace097b0d4d5a3b5dcc9e to your computer and use it in GitHub Desktop.
Docker Compose MySql
# wget https://gist.githubusercontent.com/shikhirsingh/091cb3513a4ace097b0d4d5a3b5dcc9e/raw/2c8b00808d5874737c7e70c9b937bb69e74cb41a/docker-compose.yml
version: '3'
services:
auroradb:
image: mysql:5.6
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: 'BadHuman!-Choose-Better-Passwd!'
MYSQL_DATABASE: 'lb-aurora-compatible-mysql'
MYSQL_USER: 'loopback'
MYSQL_PASSWORD: 'Yet*An0ther*Passwdz!Huh!?'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment