-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
k8s-tutorials-stateful-application (#5112)
* k8s-tutorials-stateful-application * change author and email to pass CLA
- Loading branch information
Showing
15 changed files
with
3,981 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This is an image with Percona XtraBackup, mysql-client and ncat installed. | ||
FROM debian:jessie | ||
|
||
RUN \ | ||
echo "deb http://repo.percona.com/apt jessie main" > /etc/apt/sources.list.d/percona.list \ | ||
&& echo "deb-src http://repo.percona.com/apt jessie main" >> /etc/apt/sources.list.d/percona.list \ | ||
&& apt-key adv --keyserver keys.gnupg.net --recv-keys 8507EFA5 | ||
|
||
RUN \ | ||
apt-get update && apt-get install -y --no-install-recommends \ | ||
percona-xtrabackup-24 \ | ||
mysql-client \ | ||
nmap \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
CMD ["bash"] | ||
|
Empty file.
Oops, something went wrong.