Skip to content

Instantly share code, notes, and snippets.

@GeoffreyEmery
GeoffreyEmery / docker-compose.yml
Last active June 7, 2016 21:07
haproxy vanrish docker
db:
image: mariadb
environment:
MYSQL_ROOT_PASSWORD: example
wordpress:
image: wordpress
links:
(function() {
'use strict';
angular.module('app.common')
.service('entityManager', entityManagerService);
entityManagerService.$inject = ['$http', '$q'];
function entityManagerService($http, $q) {
function EntityManager() {}