Port over local repo
This commit is contained in:
commit
676b6aa8ea
21 changed files with 1121 additions and 0 deletions
22
docker-compose.yaml
Normal file
22
docker-compose.yaml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue