From 99d6123f1313a0238c6830cde38f6dca4b6595a5 Mon Sep 17 00:00:00 2001 From: Tero Huttunen Date: Wed, 26 Aug 2026 23:47:51 +0300 Subject: [PATCH] Change port to 3011 --- README.md | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index feb52f4..c7fae74 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ PostgreSQL database and web dashboard for a car service workshop, managed with D docker compose up -d ``` -Open the web dashboard at [http://localhost:3000](http://localhost:3000). +Open the web dashboard at [http://localhost:3011](http://localhost:3011). The dashboard's **Vehicles** view provides a dedicated vehicle register containing make, model, model year, engine, transmission, fuel type, color, VIN, license plate, mileage, owner, and service-record count. The **Service records** form stores these vehicle details and can autofill them, along with the customer, when an existing VIN or license plate is entered. Customer contact information can also be autofilled by customer email or by a unique customer name. Names are not unique, so duplicate names are allowed; when a name matches multiple customers, the form asks for an email instead of choosing one incorrectly. It supports adding, listing, and editing service records with service date, VIN, license plate number, car mileage, customer, technician, complaint, and status. Adding a record creates or updates the linked customer and vehicle, technician, and service order in one transaction. diff --git a/docker-compose.yml b/docker-compose.yml index 87ff731..a1f15c3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,7 +26,7 @@ services: PORT: 3000 DATABASE_URL: postgresql://${POSTGRES_USER:-car_service_app}:${POSTGRES_PASSWORD:-change-me-in-production}@car-service-db:5432/${POSTGRES_DB:-car_service} ports: - - "${WEB_PORT:-3000}:3000" + - "${WEB_PORT:-3011}:3000" depends_on: car-service-db: condition: service_healthy