Fix dev environment deployment when watching with Gruntfile

pull/52/head
Clement Michaud 2017-07-17 22:37:34 +02:00
parent 2242f0b9ce
commit a64dbe08f8
2 changed files with 6 additions and 1 deletions

View File

@ -29,7 +29,7 @@ module.exports = function (grunt) {
args: ['build', '-t', 'clems4ever/authelia', '.']
},
"docker-restart": {
cmd: "./scripts/dc-example.sh",
cmd: "./scripts/dc-dev.sh",
args: ['up', '-d']
},
"minify": {

View File

@ -0,0 +1,5 @@
#!/bin/bash
set -e
docker-compose -f docker-compose.base.yml -f docker-compose.yml -f docker-compose.dev.yml -f example/redis/docker-compose.yml -f example/nginx/docker-compose.yml -f example/ldap/docker-compose.yml -f test/integration/docker-compose.yml $*