This repository contains a Dockerfile as well as a simple example that shows how you can run your own Docker container with Node.js and MySQL on Bitbucket Pipelines.
The Docker image is using node 12.7 and MariaDB 10.4
Just copy/paste the YML below in your bitbucket-pipelines.yml and adapt the script to your needs.
# This is a sample build configuration for Javascript.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Dockerhub as your build environment.
image: dominicbartl/node-mysql
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- /etc/init.d/mysql start # You'll need to start the MySQL service as part of your pipeline
- npm install mysqljs/mysql
- node test.js
You'll find a sample script in this repository in test.js. It simply connects to MySQL and list the existing databases.
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'root'
});
connection.connect();
connection.query('SHOW DATABASES;', function(err, rows, fields) {
if (err) throw err;
console.log('Databases: ', rows);
});
connection.end();
If you want to use a different version of Node.js you can simply create your own image for it. Just copy the content of the Dockerfile and replace the first line.
This image is built from the official Node.js image at https://hub.docker.com/_/node/ and you can find there all the different versions that are supported.
Your Dockerfile won't need to have an ENTRYPOINT or CMD line as Bitbucket Pipelines will run the script commands that you put in your bitbucket-pipelines.yml file instead.
FROM node:6.9.1
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update \
&& apt-get install -y mysql-server mysql-client libmysqlclient-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# This Dockerfile doesn't need to have an entrypoint and a command
# as Bitbucket Pipelines will overwrite it with a bash script.
docker build -t <your-docker-account>/node-mysql .
docker run -i -t <your-docker-account>/node-mysql /bin/bash
docker push <your-docker-account>/node-mysql
This is a fork of https://bitbucket.org/spittet/node-mysql