diff --git a/Jenkinsfile b/Jenkinsfile
index 76d282492..6de1192e4 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -129,8 +129,8 @@ pipeline {
                         stage('Frontend') {
                             steps {
                                 // sh 'docker build -f Dockerfile.e2e -t front .'
-                                sh 'docker-compose -f docker-compose.e2e.yml build'
-                                sh 'docker-compose -f docker-compose.e2e.yml up -d front_e2e'
+                                sh 'docker-compose -f docker-compose.e2e.yml build front'
+                                sh 'docker-compose -f docker-compose.e2e.yml up -d front'
                             }
                         }
                         // stage('Build Cypress') {
diff --git a/docker-compose.e2e.yml b/docker-compose.e2e.yml
index abbe23f3c..b2d0fddfe 100644
--- a/docker-compose.e2e.yml
+++ b/docker-compose.e2e.yml
@@ -1,7 +1,7 @@
 version: '3.7'
 services:
     front:
-        image: front_e2e
+        image: front
         command: npx quasar dev
         # command: npx quasar serve --history --proxy ./proxy.mjs --hostname 127.0.0.1 --port 9000
         build:
@@ -11,7 +11,7 @@ services:
         volumes:
             - ./node_modules:/app/node_modules
     e2e:
-        image: front_e2e
+        image: front
         command: pnpx cypress run --browser chromium
         build:
             context: .