Skip to content

selvathiruarul/mysql-5.1.73

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mysql-5.1.73 license Docker Automated buil

Docker image for MySQL 5.1.73 database based on official MySQL image

Installation

  • Run docker commnad to get an image: docker pull vsamov/mysql-5.1.73
  • Validate image successfully downloaded: docker images

Run

Start a mysql server instance:

# general form
$ $ docker run [OPTIONS] IMAGE[:TAG|@DIGEST] [COMMAND] [ARG...]

# example
$ docker run -d --name mysql-5.1.73 -p 3307:3306 -e MYSQL_ROOT_PASSWORD=[password] vsamov/mysql-5.1.73:latest

... where some-mysql is the name you want to assign to your container, my-secret-pw is the password to be set for the MySQL root user and tag is the tag specifying the MySQL version you want. See the list above for relevant tags. If port 3306 is used replace -p 3306:3306 with -p 3307:3306

Other commands:

## kill the container
docker kill [container-id]

# shell script/shell access
$ docker exec -it vsamov/mysql-5.1.73:latest bash

# viewing MySQL logs
$ docker logs vsamov/mysql-5.1.73:latest

# start exisitng container (often: after Docker Engine update)
docker start [CONTAINER ID]

Contribution

Please contribute using Github Flow. Create a fork, add commits, and open a pull request.

About

Docker image for MySQL 5.1.73 database

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%