File tree Expand file tree Collapse file tree 9 files changed +94
-8
lines changed
Expand file tree Collapse file tree 9 files changed +94
-8
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ PHP Docker Boilerplate Changelog
55------------------
66- Added cron
77- Improved documentation
8+ - Splitted MySQL Dockerfiles (with version and fork - MySQL, MariaDB and Percona)
89
9104.0.0 - 2015-08-17
1011------------------
Original file line number Diff line number Diff line change 5252# MySQL server
5353# ######################################
5454mysql :
55- build : docker/mysql/ # MySQL, MariaDB or PerconaDB
55+ build : docker/mysql
56+ dockerfile : MySQL-5.5
57+ # dockerfile: MySQL-5.6
58+ # dockerfile: MySQL-5.7
59+ # dockerfile: MariaDB-5.5
60+ # dockerfile: MariaDB-10
61+ # dockerfile: Percona-5.5
62+ # dockerfile: Percona-5.6
5663 ports :
5764 - 13306:3306
5865 volumes_from :
Original file line number Diff line number Diff line change 44#
55# Official images:
66#
7- # mysql - official MySQL from Oracle
8- # https://registry.hub.docker.com/u/library/mysql/
9- #
107# mariadb - MariaDB (MySQL fork) from MariaDB Foundation
118# https://registry.hub.docker.com/u/library/mariadb/
129#
13- # percona - PerconaDB (MySQL fork) from Percona
14- # https://registry.hub.docker.com/u/library/percona/
15- #
1610#++++++++++++++++++++++++++++++++++++++
1711
18- FROM mysql:5.5
12+ FROM mariadb:10
1913
2014ADD conf/mysql-docker.cnf /etc/mysql/conf.d/z99-docker.cnf
Original file line number Diff line number Diff line change 1+ #++++++++++++++++++++++++++++++++++++++
2+ # MySQL Docker container
3+ #++++++++++++++++++++++++++++++++++++++
4+ #
5+ # Official images:
6+ #
7+ # mariadb - MariaDB (MySQL fork) from MariaDB Foundation
8+ # https://registry.hub.docker.com/u/library/mariadb/
9+ #
10+ #++++++++++++++++++++++++++++++++++++++
11+
12+ FROM mariadb:5.5
13+
14+ ADD conf/mysql-docker.cnf /etc/mysql/conf.d/z99-docker.cnf
Original file line number Diff line number Diff line change 1+ #++++++++++++++++++++++++++++++++++++++
2+ # MySQL Docker container
3+ #++++++++++++++++++++++++++++++++++++++
4+ #
5+ # Official images:
6+ #
7+ # mysql - official MySQL from Oracle
8+ # https://registry.hub.docker.com/u/library/mysql/
9+ #
10+ #++++++++++++++++++++++++++++++++++++++
11+
12+ FROM mysql:5.5
13+
14+ ADD conf/mysql-docker.cnf /etc/mysql/conf.d/z99-docker.cnf
Original file line number Diff line number Diff line change 1+ #++++++++++++++++++++++++++++++++++++++
2+ # MySQL Docker container
3+ #++++++++++++++++++++++++++++++++++++++
4+ #
5+ # Official images:
6+ #
7+ # mysql - official MySQL from Oracle
8+ # https://registry.hub.docker.com/u/library/mysql/
9+ #
10+ #++++++++++++++++++++++++++++++++++++++
11+
12+ FROM mysql:5.6
13+
14+ ADD conf/mysql-docker.cnf /etc/mysql/conf.d/z99-docker.cnf
Original file line number Diff line number Diff line change 1+ #++++++++++++++++++++++++++++++++++++++
2+ # MySQL Docker container
3+ #++++++++++++++++++++++++++++++++++++++
4+ #
5+ # Official images:
6+ #
7+ # mysql - official MySQL from Oracle
8+ # https://registry.hub.docker.com/u/library/mysql/
9+ #
10+ #++++++++++++++++++++++++++++++++++++++
11+
12+ FROM mysql:5.7
13+
14+ ADD conf/mysql-docker.cnf /etc/mysql/conf.d/z99-docker.cnf
Original file line number Diff line number Diff line change 1+ #++++++++++++++++++++++++++++++++++++++
2+ # MySQL Docker container
3+ #++++++++++++++++++++++++++++++++++++++
4+ #
5+ # Official images:
6+ #
7+ # percona - PerconaDB (MySQL fork) from Percona
8+ # https://registry.hub.docker.com/u/library/percona/
9+ #
10+ #++++++++++++++++++++++++++++++++++++++
11+
12+ FROM percona:5.5
13+
14+ ADD conf/mysql-docker.cnf /etc/mysql/conf.d/z99-docker.cnf
Original file line number Diff line number Diff line change 1+ #++++++++++++++++++++++++++++++++++++++
2+ # MySQL Docker container
3+ #++++++++++++++++++++++++++++++++++++++
4+ #
5+ # Official images:
6+ #
7+ # percona - PerconaDB (MySQL fork) from Percona
8+ # https://registry.hub.docker.com/u/library/percona/
9+ #
10+ #++++++++++++++++++++++++++++++++++++++
11+
12+ FROM percona:5.6
13+
14+ ADD conf/mysql-docker.cnf /etc/mysql/conf.d/z99-docker.cnf
You can’t perform that action at this time.
0 commit comments