22 lines
434 B
YAML
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
|