discord-bot-nlp/docker-compose.yaml
2025-07-09 13:03:05 +10:00

22 lines
434 B
YAML

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