15 lines
302 B
YAML
15 lines
302 B
YAML
services:
|
|
bot:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- .:/app
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped
|
|
# Optional: uncomment to run with auto-reload for development
|
|
# command: python -m watchfiles main.py
|
|
stdin_open: true
|
|
tty: true
|