Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jjcosgrove/docker-mysql

Automated Docker build for MySQL
https://github.com/jjcosgrove/docker-mysql

docker dockerfile mysql

Last synced: about 1 month ago
JSON representation

Automated Docker build for MySQL

Awesome Lists containing this project

README

        

# Automated Docker build for MySQL

* Based on/uses the official [Debian Docker image](https://hub.docker.com/_/debian/).
* Configures default global credentials: root/mysql

## Creating an Image

```bash
docker build -t mysql:latest .
```

## Creating a Container

```bash
docker run -d --name mysql -p 0.0.0.0:4306:3306 mysql:latest
```