14 lines
374 B
YAML
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 |