The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

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

TAGS
AUG Leaders

Atlassian Community Events