Files
Aseret_Bank/docker-compose.yml

37 lines
736 B
YAML
Raw Permalink Normal View History

version: '3.8'
services:
postgres:
image: postgres:15-alpine
container_name: aseret_postgres
environment:
POSTGRES_USER: aseret_user
POSTGRES_PASSWORD: aseret_password
POSTGRES_DB: aseret_bank
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U aseret_user"]
interval: 10s
timeout: 5s
retries: 5
redis:
image: redis:7-alpine
container_name: aseret_redis
ports:
- "6379:6379"
volumes:
- redis_data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
volumes:
postgres_data:
redis_data: