mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 22:34:01 -05:00
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:
parent
4d6aaf0f68
commit
47439b3b94
1 changed files with 2 additions and 0 deletions
2
.github/scripts/docker-compose.yml
vendored
2
.github/scripts/docker-compose.yml
vendored
|
@ -1,5 +1,7 @@
|
|||
version: '3.8'
|
||||
|
||||
name: ghost
|
||||
|
||||
services:
|
||||
mysql:
|
||||
image: mysql:8.0.35
|
||||
|
|
Loading…
Reference in a new issue