Files
psp_panel/docker-compose.yml
T
ahasani 822bf96966 feat: add new form field components for company details and consumer management
- Implemented CompanyNameComponent, DescriptionComponent, DeviceIdComponent, EconomicCodeComponent, EmailComponent, FirstNameComponent, FiscalCodeComponent, GuildIdComponent, LastNameComponent, LegalNameComponent, LicenseStartsAtComponent, MobileComponent, MobileNumberComponent, ModelComponent, NameComponent, NationalCodeComponent, NationalIdComponent, PartnerTokenComponent, PosTypeComponent, PostalCodeComponent, ProviderIdComponent, QuantityComponent, RegistrationCodeComponent, RegistrationNumberComponent, SerialNumberComponent, SetOffComponent, SkuComponent, TerminalComponent, UnitPriceComponent, UsernameComponent.
- Added field control configurations for new fields in the form.
- Updated routing and branding configurations for TIS tenant.
- Created consumer type models for handling individual and legal consumer data.
2026-04-27 21:53:11 +03:30

73 lines
1.6 KiB
YAML

version: "3.8"
services:
# Production service
app:
platform: ${DOCKER_PLATFORM:-linux/amd64}
build:
context: .
dockerfile: Dockerfile
args:
TENANT: ${TENANT:-tis}
DIST_DIR: ${DIST_DIR:-tis}
container_name: psp_panel_prod
ports:
- "5000:5000"
environment:
- NODE_ENV=production
restart: unless-stopped
healthcheck:
test: [ "CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:5000/" ]
interval: 30s
timeout: 3s
retries: 3
start_period: 5s
networks:
- psp_panel_network
# Staging service
# staging:
# build:
# context: .
# dockerfile: Dockerfile.staging
# container_name: psp_panel_staging
# ports:
# - "5050:5000"
# environment:
# - NODE_ENV=staging
# restart: unless-stopped
# healthcheck:
# test:
# ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/"]
# interval: 30s
# timeout: 3s
# retries: 3
# start_period: 5s
# profiles:
# - staging
# networks:
# - psp_panel_network
# # Development service with hot reload
# dev:
# build:
# context: .
# dockerfile: Dockerfile.dev
# container_name: psp_panel-dev
# working_dir: /app
# volumes:
# - .:/app
# - /app/node_modules
# ports:
# - "4200:4200"
# environment:
# - NODE_ENV=development
# restart: unless-stopped
# profiles:
# - dev
# networks:
# - psp_panel_network
networks:
psp_panel_network:
driver: bridge