11 lines
261 B
YAML
11 lines
261 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
weather_bot:
|
|
build: .
|
|
container_name: tg_weather_bot
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Moscow # Укажи здесь нужный базовый часовой пояс
|
|
env_file:
|
|
- .env |