610c9606dc
Co-authored-by: Copilot <copilot@github.com>
25 lines
424 B
YAML
25 lines
424 B
YAML
services:
|
|
postgres:
|
|
image: postgres:13
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: postgres
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
|
|
redis:
|
|
image: redis:7
|
|
restart: always
|
|
ports:
|
|
- "6379:6379"
|
|
volumes:
|
|
- redis-data:/data
|
|
|
|
volumes:
|
|
postgres-data:
|
|
redis-data:
|