Files
bot-telegram/app.control-bot/docker-compose.yml
2025-09-22 11:54:42 +05:00

14 lines
374 B
YAML

services:
# Nginx веб-сервер для статических файлов
web:
image: nginx:alpine
container_name: bot-web-interface
ports:
- "3000:80"
volumes:
- ./web:/usr/share/nginx/html:ro
- ./nginx.conf:/etc/nginx/nginx.conf:ro
restart: unless-stopped
environment:
- NGINX_HOST=localhost
- NGINX_PORT=80