Skip to content

Instantly share code, notes, and snippets.

@jose4125
Created January 16, 2021 04:10
Show Gist options
  • Select an option

  • Save jose4125/108b3e64cb60e53b84214cc259dbc53c to your computer and use it in GitHub Desktop.

Select an option

Save jose4125/108b3e64cb60e53b84214cc259dbc53c to your computer and use it in GitHub Desktop.
version: '3.1'
services:
db:
image: mysql:5.7
restart: always
environment:
MYSQL_DATABASE: 'db'
# So you don't have to use root, but you can if you like
MYSQL_USER: 'user'
# You can use whatever password you like
MYSQL_PASSWORD: 'password'
# Password for root access
MYSQL_ROOT_PASSWORD: 'password'
ports:
# <Port exposed> : < MySQL Port running inside container>
- '3306:3306'
# Where our data will be persisted
volumes:
- ./.mysql-data/db:/var/lib/mysql
# Names our volume
volumes:
my-db:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment