14 lines
248 B
YAML
14 lines
248 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
weather_bot:
|
|
build: .
|
|
container_name: tg_weather_bot
|
|
restart: unless-stopped
|
|
network_mode: "host"
|
|
environment:
|
|
- TZ=Europe/Moscow
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./data:/app/data |