Files
Home_assistant/docker-compose.yml
T
2026-06-09 09:36:48 +03:00

21 lines
343 B
YAML

services:
backend:
build: ./backend
ports:
- "${PORT:-8080}:8080"
env_file: .env
volumes:
- ./data:/app/data
restart: unless-stopped
frontend:
build:
context: ./frontend
args:
VITE_API_URL: ""
ports:
- "3000:80"
depends_on:
- backend
restart: unless-stopped