forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
74 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM vitess/bootstrap:mysql56 | ||
FROM vitess/bootstrap:mysql57 | ||
|
||
# Re-copy sources from working tree | ||
USER root | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM vitess/bootstrap:mysql56 | ||
|
||
# Re-copy sources from working tree | ||
USER root | ||
COPY . /vt/src/github.com/youtube/vitess | ||
|
||
# Fix permissions | ||
RUN chown -R vitess:vitess /vt | ||
USER vitess | ||
|
||
# Build Vitess | ||
RUN make build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM vitess/bootstrap:common | ||
|
||
# Install MySQL 5.7 | ||
RUN apt-key adv --recv-keys --keyserver ha.pool.sks-keyservers.net 5072E1F5 && \ | ||
add-apt-repository 'deb http://repo.mysql.com/apt/debian/ jessie mysql-5.7' && \ | ||
apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y mysql-server libmysqlclient-dev && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Bootstrap Vitess | ||
WORKDIR /vt/src/github.com/youtube/vitess | ||
USER vitess | ||
ENV MYSQL_FLAVOR MySQL56 | ||
RUN ./bootstrap.sh --skip_root_installs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# This image is only meant to be built from within the build.sh script. | ||
FROM debian:jessie | ||
|
||
# Install dependencies | ||
RUN apt-key adv --recv-keys --keyserver pgp.mit.edu 5072E1F5 \ | ||
&& echo 'deb http://repo.mysql.com/apt/debian/ jessie mysql-5.6' > /etc/apt/sources.list.d/mysql.list \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive \ | ||
apt-get install -y --no-install-recommends \ | ||
bzip2 \ | ||
memcached \ | ||
libmysqlclient18 \ | ||
mysql-client \ | ||
mysql-server \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Set up Vitess environment (just enough to run pre-built Go binaries) | ||
ENV VTTOP /vt/src/github.com/youtube/vitess | ||
ENV VTROOT /vt | ||
ENV GOTOP $VTTOP/go | ||
ENV VTDATAROOT $VTROOT/vtdataroot | ||
ENV GOBIN $VTROOT/bin | ||
ENV GOPATH $VTROOT | ||
ENV PATH $VTROOT/bin:$PATH | ||
ENV VT_MYSQL_ROOT /usr | ||
ENV PKG_CONFIG_PATH $VTROOT/lib | ||
ENV LD_LIBRARY_PATH $VTROOT/dist/vt-zookeeper-3.4.6/lib | ||
|
||
# Copy binaries (placed by build.sh) | ||
COPY lite/vt /vt | ||
|
||
# Create vitess user | ||
RUN groupadd -r vitess && useradd -r -g vitess vitess && \ | ||
mkdir -p /vt/vtdataroot && chown -R vitess:vitess /vt | ||
|
||
# Create mount point for actual data (e.g. MySQL data dir) | ||
VOLUME /vt/vtdataroot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters