From 54eb65b81dedcb6501974bbd3b04d8c6c7b61099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Fri, 10 Dec 2021 18:35:58 +0100 Subject: [PATCH] Don't use delegated volumes in Docker We aren't sure why this option was added; only that it was added with macos and windows developers in mind. Since we aren't sure about it, we're using the default `consistent` option instead. --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 982d5731a..e34ed5e66 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -34,8 +34,8 @@ services: - "3000:3000" # map our application source code, in full, to the application root of our container volumes: - - .:/var/www/consul:delegated - - bundle:/usr/local/bundle:delegated + - .:/var/www/consul + - bundle:/usr/local/bundle - "$SSH_AUTH_SOCK:/tmp/agent.sock" environment: - POSTGRES_PASSWORD=$POSTGRES_PASSWORD