Compare commits

...

3 Commits

Author SHA1 Message Date
jose-rZM
df6d68c8a0 Add node 2025-12-20 18:33:35 +01:00
jose-rZM
0e31fb2c16 Remove container name property to avoid collisions 2025-12-20 18:27:04 +01:00
jose-rZM
e7d01b1130 Fix typo 2025-12-20 18:26:25 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -83,7 +83,9 @@ pipeline {
post { post {
always { always {
node {
cleanWs() cleanWs()
} }
} }
} }
}

View File

@@ -5,7 +5,6 @@ services:
build: build:
context: ./backend context: ./backend
image: cafeteria-backend:${BACKEND_TAG} image: cafeteria-backend:${BACKEND_TAG}
container_name: cafeteria-backend
ports: ports:
- "8000:8000" - "8000:8000"
environment: environment:
@@ -29,8 +28,7 @@ services:
frontend: frontend:
build: build:
context: ./frontend context: ./frontend
image: cafeteria-frontend:${fRONTEND_TAG} image: cafeteria-frontend:${FRONTEND_TAG}
container_name: cafeteria-frontend
ports: ports:
- "80:80" - "80:80"
depends_on: depends_on: