From 47439b3b948abdf9b945845d35c02ccecfd8ac8b Mon Sep 17 00:00:00 2001 From: Michael Barrett Date: Thu, 1 Feb 2024 09:06:44 +0000 Subject: [PATCH] Updated docker-compose.yml to include a name for the project (#19588) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit no refs Added a name for the project in `docker-compose.yml` as it was using the `scripts` directory as the name Before: ```sh ❯ docker-compose ls NAME STATUS CONFIG FILES scripts running(1) /path/to/ghost/.github/scripts/docker-compose.yml ``` After: ```sh ❯ docker-compose ls NAME STATUS CONFIG FILES ghost running(1) /path/to/ghost/.github/scripts/docker-compose.yml ``` --- .github/scripts/docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/scripts/docker-compose.yml b/.github/scripts/docker-compose.yml index 56c6441eda..1fdb8b3213 100644 --- a/.github/scripts/docker-compose.yml +++ b/.github/scripts/docker-compose.yml @@ -1,5 +1,7 @@ version: '3.8' +name: ghost + services: mysql: image: mysql:8.0.35