/
guselnikov
/
inst
Обзор
Документация
Войти
/
guselnikov
/
inst
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
docker/docker-compose.yml
46 строк
1006 B
Viktor Guselnikov
first_commit
07 июл 2026, 11:54
07 июл 2026, 11:54
098126a
Код
Авторство
О чём код?
services: postgres: image: postgres:16-alpine container_name: inst-postgres environment: POSTGRES_USER: inst POSTGRES_PASSWORD: inst POSTGRES_DB: inst ports: - '5433:5432' volumes: - inst_postgres_data:/var/lib/postgresql/data healthcheck: test: ['CMD-SHELL', 'pg_isready -U inst -d inst'] interval: 5s timeout: 5s retries: 10 rabbitmq: image: rabbitmq:3-management-alpine container_name: inst-rabbitmq environment: RABBITMQ_DEFAULT_USER: inst RABBITMQ_DEFAULT_PASS: inst ports: - '5673:5672' - '15673:15672' healthcheck: test: ['CMD', 'rabbitmq-diagnostics', '-q', 'ping'] interval: 10s timeout: 5s retries: 10 redis: image: redis:7-alpine container_name: inst-redis ports: - '6380:6379' healthcheck: test: ['CMD', 'redis-cli', 'ping'] interval: 5s timeout: 3s retries: 10 volumes: inst_postgres_data: