Gulp composer bugs fixed

This commit is contained in:
Juan 2018-06-12 12:04:15 +02:00
parent a1aef51f3c
commit 8b474f4464
1 changed files with 3 additions and 1 deletions

View File

@ -195,7 +195,9 @@ gulp.task('docker-compose', async () => {
container_name: `${namePrefix}${serviceName}`,
image: `${serviceName}:${imageTag}`
});
service.build.labels['salix.tag'] = imageTag;
service.build.labels = {
'salix.tag': imageTag
};
}
let ymlString = yaml.safeDump(composeYml);