From db1fa985903c0b4fc7acd0f18fb495d5eeb55b25 Mon Sep 17 00:00:00 2001 From: Stu Last Date: Mon, 24 Jul 2017 10:43:09 +0100 Subject: [PATCH] Filepath error in Services/nginx The definition of the nginx services path to the nginx config file should be to the directory, and not explicitly name the file. Edited line 18 to remove default.conf from volume file path. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index d58a19a..80efe21 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,7 +15,7 @@ services: ports: - 8080:80 volumes: - - ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf + - ./docker/nginx/default.conf:/etc/nginx/conf.d/ volumes_from: - php