16 lines
232 B
YAML
16 lines
232 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
bot:
|
|
build: .
|
|
container_name: telegram_bot
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Production
|
|
volumes:
|
|
- ./logs:/app/logs
|
|
restart: always
|
|
|
|
|