File tree Expand file tree Collapse file tree 1 file changed +1
-21
lines changed
Expand file tree Collapse file tree 1 file changed +1
-21
lines changed Original file line number Diff line number Diff line change 1- FROM debian:stretch
2-
3- RUN apt-get update && apt-get install -y \
4- wget curl alien unzip mysql-client
5-
6- # https://www.percona.com/doc/percona-xtrabackup/LATEST/installation/apt_repo.html
7- RUN wget https://repo.percona.com/apt/percona-release_0.1-5.stretch_all.deb -P /tmp/ \
8- && dpkg -i /tmp/percona-release_0.1-5.stretch_all.deb \
9- && rm /tmp/percona-release_0.1-5.stretch_all.deb
10-
11- RUN apt-get update && apt-get install -y \
12- percona-xtrabackup-24 \
13- && rm -rf /var/lib/apt/lists/*
14-
15- RUN wget https://nmap.org/dist/ncat-7.60-1.x86_64.rpm \
16- && alien ncat-7.60-1.x86_64.rpm \
17- && dpkg --install ncat_7.60-2_amd64.deb \
18- && wget https://downloads.rclone.org/rclone-current-linux-amd64.zip \
19- && unzip rclone-current-linux-amd64.zip \
20- && mv rclone-*-linux-amd64/rclone /usr/bin/ \
21- && chmod 755 /usr/bin/rclone
1+ FROM quay.io/presslabs/mysql-toolbox:v0.1
222
233COPY docker-entrypoint.sh mysql-helper /usr/local/bin/
244ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh" ]
You can’t perform that action at this time.
0 commit comments