finance-front/docker-compose.server.yml
Заид Омар Медхат 06c5887fd8
All checks were successful
Deploy Production / deploy (push) Successful in 41s
first commit
2025-12-26 12:13:34 +05:00

25 lines
642 B
YAML

version: "3.8"
services:
frontend:
build:
context: .
dockerfile: Dockerfile
args:
VITE_API_HOST: https://api-finance.ai-assistant-bot.xyz
container_name: finance_front
networks:
- proxy
restart: unless-stopped
labels:
- traefik.enable=true
- traefik.docker.network=proxy
- traefik.http.routers.finance.rule=Host(`finance.ai-assistant-bot.xyz`)
- traefik.http.routers.finance.entrypoints=web,websecure
- traefik.http.routers.finance.tls.certresolver=le
- traefik.http.services.finance.loadbalancer.server.port=80
networks:
proxy:
external: true