# PROD override: pull pinned registry images (no local build), restart always, real # recognizer, and keep vision INTERNAL (only the server port is published). Use with the # base file and pin TAG to the branch/SHA you deploy: # REGISTRY=git.infra.msai.al/mca/parking_solution TAG=main \ # docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d services: server: restart: always ports: - "3000:3000" logging: driver: json-file options: max-size: "10m" max-file: "3" vision: restart: always # The real ANPR engine. The image baked the model weights at build (offline-first). environment: VISION_RECOGNIZER: fast_alpr # No published ports — vision is reached only by the server over the private network. logging: driver: json-file options: max-size: "10m" max-file: "3"