Skip to content

pemer/drupal-mysql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

drupal-mysql

this is a example to start a simple mysql daemon with docker. The data from the mysql-daemon are stored in folder db.

we are useing a forign container from paintedfox/mariadb

Build the container

export USER=superuser
export PASS=abc123

docker run -d --name=mariadb \
     -p 127.0.0.1:3306:3306 \
     -v $(pwd):/db \
     -e USER="$(USER)" \
     -e PASS="$(PASS)" \
     paintedfox/mariadb

Start the container

docker start mariadb

About

describtion, how to start a mysql for drupal

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages