Skip to content

develth/sf2-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TetraWeb PHP CI Kit with Docker

Build Status

This repository contains a set of utilities for running PHP tests via Gitlab CI.

These tools provide:

  1. Gitlab runner deployment script for Ubuntu on VM or metal server. It is not recommended to install runner right on the production system.

  2. Set of Docker images for PHP 5.3 - 7.0 based on official Docker PHP images with additional modules and Node.js

  3. MySQL image with minimized requirements for RAM based on official Docker image

  4. Links to redis and mongo official Docker images

The goal of these tools is to automate as much as possible of routine work related to configuring the runner so you can concentrate on writing tests for your code. Also these tools are trying to be resources savvy, since in most cases huge in-RAM caches are not needed for just running unit tests with some fixtures. So you can use very small VMs for running tests

Contents of repository

Quick start

  1. Install Gitlab
  2. Get a server (VM or metal) with minimal Ubuntu-14.04 installed. It will be used for the runner
  3. Login as root to a server and execute curl -S https://raw.githubusercontent.com/TetraWeb/docker/master/gitlab-runner-vm/bootstrap.sh | bash and answer the questions. This script will install docker, Gitlab runner, and configure runner for using these docker images.

Script also installs the cronjob for updating images weekly, so you will always have the latest versions of PHP images (/etc/cron.weekly/docker-update-images)

It's not recommended to run update more often since docker cleanup system of unused images still is not perfect and leave some garbage in your /var/lib/docker

Runner is limited to tetraweb/php:* images for main container (where your repository is cloned) and any service images */* (secondary containers spinned for services like mysql, redis, etc)

If you want to use the server for also running other images (ruby or whatever), you should add another runners to /etc/gitlab-runner/config.toml, and DO NOT overwrite allowed_images = ["tetraweb/php:*"] for this runner, since it is a potential security breach.

TODO

  • MySQL with smaller RAM demands
  • Mongo (Maybe smaller initial size to decrease the time of initialization)

Requirements

  • Gitlab v7.13.0 and later
  • Gitlab CI v7.13.0 and later (not needed if you have Gitlab >=8)
  • Gitlab runner v0.5.0 and later

Similar projects

About

Set of docker PHP images for continuous integration

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 90.7%
  • ApacheConf 9.3%