Updated docker-compose.yml to include a name for the project (#19588)

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
```
This commit is contained in:
Michael Barrett 2024-02-01 09:06:44 +00:00 committed by GitHub
parent 4d6aaf0f68
commit 47439b3b94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,7 @@
version: '3.8'
name: ghost
services:
mysql:
image: mysql:8.0.35