Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jjcosgrove/docker-mysql
- Owner: jjcosgrove
- License: mit
- Created: 2016-01-07T18:20:30.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-07T18:22:56.000Z (about 9 years ago)
- Last Synced: 2024-12-06T22:18:14.051Z (2 months ago)
- Topics: docker, dockerfile, mysql
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```