mirror of
https://github.com/qwerinope/qweribot.git
synced 2025-12-17 02:31:39 +01:00
22 lines
453 B
YAML
22 lines
453 B
YAML
services:
|
|
valkey:
|
|
image: valkey/valkey:alpine
|
|
container_name: qweribot-valkey
|
|
ports:
|
|
- 6379:6379
|
|
restart: no
|
|
volumes:
|
|
- ./db/redis:/data
|
|
environment:
|
|
- VALKEY_EXTRA_FLAGS=--save 60 1
|
|
postgres:
|
|
container_name: qweribot-postgres
|
|
image: postgres:latest
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- ./db/postgresql:/var/lib/postgresql/data
|