From cbab2c19f1e823dd6851a321c33c2089ca417984 Mon Sep 17 00:00:00 2001 From: Giri Gaurav Bhatnagar Date: Fri, 5 Aug 2016 19:18:45 +0530 Subject: [PATCH] Update boolean values to be in quotes With version 2 file format , YAML boolean values (true, false, yes, no, on, off) must be enclosed in quotes, so that the parser interprets them as strings. [https://docs.docker.com/compose/compose-file/#args] --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 0e5d3e7..004740a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,19 +10,19 @@ pdb: image: centos:7 volumes: - /opt/pgd/pdb - command: true + command: 'true' media: image: centos:7 volumes: - /opt/pgd/media - command: true + command: 'true' static: image: centos:7 volumes: - /opt/pgd/static - command: true + command: 'true' web: build: .