Files
qweribot/compose.yml

22 lines
447 B
YAML

services:
valkey:
image: valkey/valkey:alpine
container_name: valkey
ports:
- 6379:6379
restart: no
volumes:
- ./db/redis:/data
environment:
- VALKEY_EXTRA_FLAGS=--save 60 1
postgres:
container_name: postgres
image: postgres:latest
restart: unless-stopped
env_file:
- .env.development
ports:
- "5432:5432"
volumes:
- ./db/postgresql:/var/lib/postgresql/data