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.
docker: Switch default flavor to mysql56.
- Loading branch information
Showing
7 changed files
with
64 additions
and
12 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
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,15 @@ | ||
FROM vitess/bootstrap:mariadb | ||
|
||
# Clear out old tree from bootstrap image. | ||
USER root | ||
RUN rm -rf /vt/src/github.com/youtube/vitess | ||
|
||
# Re-copy sources from working tree | ||
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,34 @@ | ||
# 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 keyserver.ubuntu.com 0xcbcb082a1bb943db \ | ||
&& echo 'deb http://sfo1.mirrors.digitalocean.com/mariadb/repo/10.0/debian jessie main' > /etc/apt/sources.list.d/mariadb.list \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||
bzip2 \ | ||
memcached \ | ||
mariadb-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.3.5/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
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