diff --git a/.docker/nginx/default.conf b/.docker/nginx/default.conf
new file mode 100644
index 0000000000000000000000000000000000000000..92f16aee22b560e3848da53e6d447bc7e755837a
--- /dev/null
+++ b/.docker/nginx/default.conf
@@ -0,0 +1,20 @@
+server {
+    listen 80;
+    server_name localhost;
+    root /var/www/public;
+
+    index index.php index.html;
+
+    location / {
+    try_files $uri $uri/ /index.php?$query_string;
+    }
+
+    location ~ \.php(/|$) {
+        fastcgi_pass app:9000;
+        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+        include fastcgi_params;
+    }
+
+    error_log  /var/log/nginx/error.log;
+    access_log /var/log/nginx/access.log;
+}
\ No newline at end of file
diff --git a/compose.yaml b/compose.yaml
index f86b3c8ad50293d8108030887a07dcb79fcb1dba..62d271e219b2917dc65bee35a9ce7bda44e665c9 100644
--- a/compose.yaml
+++ b/compose.yaml
@@ -1,40 +1,46 @@
 services:
-  symfony:
-    image: bitnami/symfony
-    container_name: symfony_app
+  web:
+    image: nginx:alpine
+    container_name: nginx_server
+    working_dir: /var/www
     ports:
-      - "80:8000"
-    environment:
-      - SYMFONY_PROJECT_SKELETON=symfony/skeleton
-      - DATABASE_HOST=mysql
-      - SYMFONY_DATABASE_PASSWORD=symfony
+      - "8080:80"
     volumes:
-      - ./web_app:/app
+      - ./web_app:/var/www
+      - ./.docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
     depends_on:
-      - mysql
+      - app
 
-  mysql:
-    image: mysql:8.1
+  app:
+    image: php:8.2-fpm
+    container_name: symfony_app
+    working_dir: /var/www
+    volumes:
+      - ./web_app:/var/www
+    environment:
+      - APP_ENV=dev
+    depends_on:
+      - db
+
+  db:
+    image: mysql:9.2.0
     container_name: symfony_db
     environment:
-      MYSQL_ROOT_PASSWORD: password
       MYSQL_DATABASE: wishlist_db
-      MYSQL_USER: symfony
-      MYSQL_PASSWORD: symfony
+      MYSQL_ROOT_PASSWORD: password
+      MYSQL_USER: admin
+      MYSQL_PASSWORD: admin_password
     ports:
       - "3306:3306"
     volumes:
       - ./mysql_data:/var/lib/mysql
 
-  phpmyadmin:
-    image: phpmyadmin/phpmyadmin
-    container_name: phpmyadmin
+  phpMyAdmin:
+    image: phpmyadmin:5.2.2-apache
+    container_name: phpMyAdmin
     ports:
-      - "8080:80"    #this line maps your pc port to the container port
-    depends_on:
-      - mysql    #this line links this container to the db container
+    - "8081:80"
     environment:
-      PMA_HOST: mysql
-
-#If you got an error about folder permissions with innodb_redo, 
-# try to fix it by running sudo chmod -R 755 ~/<your_path>/wishlist/mysql_data 
\ No newline at end of file
+      - MYSQL_ROOT_PASSWORD=password
+      - MYSQL_USER=admin
+      - MYSQL_PASSWORD=admin_password
\ No newline at end of file
diff --git a/composer.json b/composer.json
deleted file mode 100644
index 6da41e572a70b9fb0546b5c30a77d9dbf1d66982..0000000000000000000000000000000000000000
--- a/composer.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-    "require": {
-        "symfony/orm-pack": "^2.4"
-    },
-    "require-dev": {
-        "symfony/maker-bundle": "^1.62"
-    }
-}
diff --git a/Dockerfile b/symfony.dockerfile
similarity index 100%
rename from Dockerfile
rename to symfony.dockerfile
diff --git a/web_app/compose.override.yaml b/web_app/compose.override.yaml
deleted file mode 100644
index c5612b0ad1957ade3aeb03176f49da20cda51469..0000000000000000000000000000000000000000
--- a/web_app/compose.override.yaml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-services:
-###> doctrine/doctrine-bundle ###
-  database:
-    ports:
-      - "5432"
-###< doctrine/doctrine-bundle ###
diff --git a/web_app/compose.yaml b/web_app/compose.yaml
deleted file mode 100644
index 89c74d180dbc0c7256caa190444cbb7c4036dca5..0000000000000000000000000000000000000000
--- a/web_app/compose.yaml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-services:
-###> doctrine/doctrine-bundle ###
-  database:
-    image: postgres:${POSTGRES_VERSION:-16}-alpine
-    environment:
-      POSTGRES_DB: ${POSTGRES_DB:-app}
-      # You should definitely change the password in production
-      POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}
-      POSTGRES_USER: ${POSTGRES_USER:-app}
-    healthcheck:
-      test: ["CMD", "pg_isready", "-d", "${POSTGRES_DB:-app}", "-U", "${POSTGRES_USER:-app}"]
-      timeout: 5s
-      retries: 5
-      start_period: 60s
-    volumes:
-      - database_data:/var/lib/postgresql/data:rw
-      # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!
-      # - ./docker/db/data:/var/lib/postgresql/data:rw
-###< doctrine/doctrine-bundle ###
-
-volumes:
-###> doctrine/doctrine-bundle ###
-  database_data:
-###< doctrine/doctrine-bundle ###
diff --git a/www/app/Controllers/user.php b/www/app/Controllers/user.php
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/www/app/Models/user.php b/www/app/Models/user.php
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/www/app/Views/user.html b/www/app/Views/user.html
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/www/config/config.php b/www/config/config.php
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/www/config/database.php b/www/config/database.php
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/www/index.php b/www/index.php
deleted file mode 100644
index 62d942920712fa6fa42da7fa635e44617e1bcc46..0000000000000000000000000000000000000000
--- a/www/index.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-    <meta charset="UTF-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>WishList</title>
-</head>
-<body>
-    <p> WishList is running ! </p>
-</body>
-</html>
\ No newline at end of file
diff --git a/www/public/css/user.css b/www/public/css/user.css
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/www/public/images/ejem.txt b/www/public/images/ejem.txt
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/www/public/js/script.js b/www/public/js/script.js
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/www/routes/web.php b/www/routes/web.php
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000