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/
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
Earning the Mindful Member badge proves you know how to lead with kindness, plus it enters you into a giveaway for exclusive Atlassian swag. Take the quiz, grab the badge, and comment on our announcement article to spread the good vibes!
Start here
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.