11 lines
277 B
YAML
11 lines
277 B
YAML
services:
|
|
bot:
|
|
working_dir: /app
|
|
image: python:3.14-slim
|
|
command: bash -c "pip install -r requirements.txt && python main.py"
|
|
container_name: reddit-fix-please
|
|
restart: unless-stopped
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
volumes:
|
|
- .:/app |