Skip to content
This repository has been archived by the owner on May 2, 2020. It is now read-only.

Latest commit

 

History

History
41 lines (35 loc) · 970 Bytes

README.md

File metadata and controls

41 lines (35 loc) · 970 Bytes

mysql4

Docker Pulls

A Mysql4 installation running on Docker

In 2015 when Mysql 5.7 ist current, a MySQL4 environment is still needed as requirement from mature programs (CAO-Faktura, ...)

build

docker build -t tommi2day/mysql4 .

exposed Ports

# mysql  
EXPOSE 3306

Volumes

VOLUME /db # mysql datadir

Environment variables used

MYSQL_ROOT_PASSWORD	mysql4
TZ	Europe/Berlin

Root password will be bound to the wildcard % host to allow login from any network host.

Run

Specify the MYSQL_ROOT_PASSWORD environment variable and a volume for the datafiles when launching a new container, e.g:

docker run --name mysql4 \
--add-host="mysql4:127.0.0.1" \
-e MYSQL_ROOT_PASSWORD=$MYSQL_ROOT_PASSWORD \ 
-v /volume1/docker/mysql:/db \ 
-p 33306:3306 \
tommi2day/mysql4

see run.sh for an example