Files
diploma-client/docker-compose.yml
Evgenii Saenko 4f6700e0e2 Add docker
2025-12-17 11:51:25 +03:00

12 lines
301 B
YAML

services:
web:
build:
context: .
dockerfile: Dockerfile
args:
# Override at build time: VITE_API_URL=https://api.example.com docker compose up --build
VITE_API_URL: ${VITE_API_URL:-http://localhost:8080}
ports:
- '8000:80'
restart: unless-stopped