Skip to content

Instantly share code, notes, and snippets.

@mfbx9da4
Created January 16, 2020 17:16
Show Gist options
  • Save mfbx9da4/679b84689ec0fbde92905eb65705e6f1 to your computer and use it in GitHub Desktop.
Save mfbx9da4/679b84689ec0fbde92905eb65705e6f1 to your computer and use it in GitHub Desktop.
version: "3.3"
services:
db:
image: mysql:5.7
restart: always
environment:
MYSQL_DATABASE: "DATABASE_NAME"
MYSQL_USER: "DB_USER"
MYSQL_PASSWORD: "DB_PASS"
MYSQL_ROOT_PASSWORD: "DB_PASS"
ports:
- "3306:3306"
expose:
- "3306"
volumes:
- my-db:/var/lib/mysql
volumes:
my-db:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment