addressbook_web/docker-compose.yml

11 lines
354 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

version: '3.8'
services:
rustdesk-organizer:
build: .
ports:
- "8001:8001" # Веб-интерфейс (локальный доступ)
- "8002:8002" # API (доступ для POST-запросов)
volumes:
- ./db:/db
- ./uploads:/app/uploads # Монтируем папку uploads
restart: unless-stopped