Port over local repo

This commit is contained in:
j 2025-07-09 13:03:05 +10:00
commit 676b6aa8ea
21 changed files with 1121 additions and 0 deletions

22
docker-compose.yaml Normal file
View file

@ -0,0 +1,22 @@
services:
app:
build: ./docker
environment:
- PYTHONUNBUFFERED=1
env_file:
- ./.bot-env
volumes:
- ./src:/app
# For testing
# Use docker compose run app
#entrypoint: /bin/bash
#stdin_open: true
#tty: true
redis:
image: redis:7
volumes:
- ./redis-data:/data
command: ["redis-server", "--appendonly", "yes"]
restart: unless-stopped