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
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.