Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Run MySQL dump with Pipeline

Kiran K July 19, 2016

I have successfully integrated "git-ftp" with Pipeline, now i wanted to setup "mysql-docker" which run mysql dump.

How can i do that inside below yml script.

image: samueldebruyn/debian-git
pipelines:
  branches:
   master:
    - step:
     script:
      - apt-get update
      - apt-get -qq install git-ftp
      - git ftp push --user $User --passwd $Pwd ftp://mywebsite/public_html/

1 answer

0 votes
ojongerius July 25, 2016

Hi Kiran,

We do not support Docker in Docker yet, you can track progress in at issue 12757. In the meanwhile you could install and start MySQL in your container, and run mysqldump after. 

An example on Ubuntu would look like so:

image: ubuntu:latest
pipelines:
  default:
    - step:
        script:
          - apt-get update
          - DEBIAN_FRONTEND=noninteractive apt-get -q -y install mysql-server mysql-client
          - /etc/init.d/mysql start && mysqldump < foo.sql

Cheers,

Otto

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events