Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Run MySQL dump with Pipeline

Kiran K
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
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