/
syncora
/
subscribe_service
Обзор
Документация
Войти
/
syncora
/
subscribe_service
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
docker-compose.yml
30 строк
854 B
ikarg
add notifies
14 окт 2025, 21:35
14 окт 2025, 21:35
e9a5591
Код
Авторство
О чём код?
version: '3.8' services: syncora_subscribe_service: container_name: syncora_subscribe_service restart: unless-stopped build: context: ./ dockerfile: Dockerfile ports: - 8001:8001 command: "uv run uvicorn app.main:app --host 0.0.0.0 --port 8001 --reload --env-file .env.dev" secrets: - postgres_password - jwt_secret_key - smtp_password - vault_user_password volumes: - ./:/code - ./migrations:/code/migrations secrets: postgres_password: file: ./secrets/postgres_password.txt jwt_secret_key: file: ./secrets/jwt_secret_key.txt smtp_password: file: ./secrets/smtp_password.txt vault_user_password: file: ./secrets/vault_user_password.txt