Cucumber/docker-compose.yml

31 lines
619 B
YAML
Raw Normal View History

2024-10-28 00:25:51 +04:00
services:
postgres:
image: postgres:14
container_name: cucumber_database
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 12345
POSTGRES_DB: main_database
ports:
- "5438:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
2024-11-10 13:35:23 +04:00
redis:
image: 'redis:latest'
ports:
- '6379:6379'
volumes:
- 'cloud-redis:/data'
healthcheck:
test:
- CMD
- redis-cli
- ping
retries: 3
timeout: 5s
2024-10-28 00:25:51 +04:00
volumes:
postgres_data:
2024-11-10 13:35:23 +04:00
driver: local
cloud-redis:
2024-10-28 00:25:51 +04:00
driver: local