Files
notify/docker-compose.yml
2026-04-16 13:51:10 +03:00

17 lines
327 B
YAML

services:
notify:
container_name: notify
build:
context: .
dockerfile: Dockerfile
ports:
- "8001:8001"
environment:
PYTHONUNBUFFERED: "1"
APP_MODULE: "src.main:app"
APP_HOST: "0.0.0.0"
APP_PORT: "8000"
APP_WORKERS: "3"
env_file:
- .env
restart: no