From fbaaffddcc959f321bf30a0d92b500f3ab3728c4 Mon Sep 17 00:00:00 2001 From: Peter Nwakuba <165977045+orahboni@users.noreply.github.com> Date: Sun, 29 Jun 2025 04:18:42 +0100 Subject: [PATCH] Update docker-compose.yml Line 20 was already declared on line 12, so I removed line 12. Additionally, the image name for WordPress was incorrect, resulting in a 'pull request denial' during integration. I corrected this by using the official wordpress:latest image, which resolved the issue. --- backend/docker-compose.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/backend/docker-compose.yml b/backend/docker-compose.yml index a68980b..334880a 100644 --- a/backend/docker-compose.yml +++ b/backend/docker-compose.yml @@ -9,8 +9,6 @@ services: mysql: image: mysql:5.7 - volumes: - - mysql_data:/var/lib/mysql restart: always environment: MYSQL_ROOT_PASSWORD: root @@ -37,7 +35,7 @@ services: - mysql - composer build: ./php - image: wordpress_image + image: wordpress:latest ports: - "8020:80" restart: always