Files
vps-tracker/docker-compose.yml
T
DenozordecandCursor 0de0538218
Docker / build (push) Has been cancelled
feat(api): завершение миграции на Fastify — sync, scheduler, backup
Портированы BILLmanager sync/test/balance, планировщик и Telegram,
импорт/экспорт бэкапов и migrate API; Docker по умолчанию на fastify.
Добавлен .understand-anything/ в gitignore, исправлен path codegraph в MCP.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-27 23:22:59 +07:00

26 lines
620 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# VPS Tracker: образ с GHCR + SQLite в ./data на хосте
services:
app:
image: ghcr.io/denozordec/vps-tracker:latest
pull_policy: always
ports:
- "3001:3001"
environment:
PORT: "3001"
RUNTIME: "fastify"
volumes:
- ./data:/app/data
# Раскомментируйте для локальной сборки вместо pull образа:
# app-build:
# build:
# context: .
# dockerfile: Dockerfile
# ports:
# - "3001:3001"
# environment:
# PORT: "3001"
# RUNTIME: "express"
# volumes:
# - ./data:/app/data