18 lines
No EOL
297 B
YAML
18 lines
No EOL
297 B
YAML
services:
|
|
bot:
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./config:/app/config
|
|
depends_on:
|
|
- redis
|
|
- postgres
|
|
redis:
|
|
image: redis:alpine
|
|
postgres:
|
|
image: postgres:alpine
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./data:/var/lib/postgresql/data |