Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version 5.7.16 #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build:
-v $(CURDIR)/src:/src \
imega/base-builder \
--packages="zlib libstdc++ libaio" \
--dev-packages="alpine-sdk zlib-dev bison ncurses-dev cmake libtool readline-dev libaio-dev"
--dev-packages="alpine-sdk boost-dev@v33 zlib-dev bison ncurses-dev cmake libtool readline-dev libaio-dev"

test:
@docker build -t imega/mysql-test .
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

This is docker image to run a MySQL database server.

[![](https://images.microbadger.com/badges/image/imega/mysql:5.6.35.svg)](https://microbadger.com/images/imega/mysql:5.6.35 "Get your own image badge on microbadger.com")[![Build Status](https://travis-ci.org/imega-docker/mysql.svg?branch=master)](https://travis-ci.org/imega-docker/mysql)
[![](https://images.microbadger.com/badges/image/imega/mysql:5.7.16.svg)](https://microbadger.com/images/imega/mysql:5.7.16 "Get your own image badge on microbadger.com")[![Build Status](https://travis-ci.org/imega-docker/mysql.svg?branch=master)](https://travis-ci.org/imega-docker/mysql)

Image size: 154 MB
Image size: MB

From image: alpine:3.5

Mysql Server: 5.6.35
Mysql Server: 5.7.16

## FREE ACCESS to server! Why?

Expand Down
5 changes: 2 additions & 3 deletions src/mysql/APKBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@ pkgname=mysql
pkgdir=/

vmajor=5
vminor=6
vbuild=35
vminor=7
vbuild=16

source="http://mysql.mirrors.pair.com/Downloads/MySQL-$vmajor.$vminor/mysql-$vmajor.$vminor.$vbuild.tar.gz"

_builddir="$srcdir/$pkgname-$vmajor.$vminor.$vbuild"

build() {
patch src/mysql-5.6.35/mysys/stacktrace.c < mysql-5.6.34-remove-thd_lib.patch
cd "$_builddir"
cmake . -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
Expand Down