Skip to content

Commit

Permalink
k8s-tutorials-stateful-application (#5112)
Browse files Browse the repository at this point in the history
* k8s-tutorials-stateful-application

* change author and email to pass CLA
  • Loading branch information
xiaosuiba authored and chenopis committed Sep 2, 2017
1 parent cc8d528 commit 593dc8c
Show file tree
Hide file tree
Showing 15 changed files with 3,981 additions and 0 deletions.
17 changes: 17 additions & 0 deletions cn/docs/tutorials/stateful-application/Dockerfile
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.
Loading

0 comments on commit 593dc8c

Please sign in to comment.