Skip to content

Instantly share code, notes, and snippets.

@m-cakir
Last active September 20, 2020 13:20
Show Gist options
  • Save m-cakir/4c9993bc4cfa353abccf32e1a0eb8321 to your computer and use it in GitHub Desktop.
Save m-cakir/4c9993bc4cfa353abccf32e1a0eb8321 to your computer and use it in GitHub Desktop.
mysql container with import.sql
version: '3.1'
services:
db:
image: mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: 123
MYSQL_DATABASE: db
ports:
- "3306:3306"
volumes:
- ./mysql-dump:/docker-entrypoint-initdb.d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment