golscontrol-frontend-v1/docker-compose.yml
edgar.mendez d1c203cd0e feat(warehouse): add inventory management features
- Implemented getWarehouseById method in warehouseService to fetch warehouse details by ID.
- Added new types for warehouse inventory management in warehouse.d.ts and warehouse.inventory.d.ts.
- Created WarehouseAddInventory.vue component for handling inventory entries with serial number management.
- Developed inventoryWarehouseServices for adding inventory through API.
- Updated router to include the new inventory management component.
- Added Docker configuration files for production deployment.
- Created Nginx configuration for serving the application.
- Added .dockerignore and .env.production for environment-specific settings.
2026-02-13 13:49:41 -06:00

17 lines
327 B
YAML

services:
controls-front:
build:
context: .
dockerfile: Dockerfile
args:
VITE_API_URL: ${VITE_API_URL}
container_name: controls-front-prod
ports:
- "${APP_PORT}:80"
networks:
- controls-network
restart: unless-stopped
networks:
controls-network:
driver: bridge