/
ligeron
/
msclient
Обзор
Документация
Войти
/
ligeron
/
msclient
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
compose.yaml
31 строка
656 B
Aleksandr Provotorov
add docker
09 июн 2026, 20:04
09 июн 2026, 20:04
e14df0a
Код
Авторство
О чём код?
services: server: image: ligeronahill/msclient:v0.1.0 ports: - "8080:3000" environment: DATABASE_URL: postgres://postgres:postgres@db:5432/msclientdb RUST_LOG: info depends_on: db: condition: service_healthy db: image: postgres:latest restart: always environment: POSTGRES_DB: msclientdb POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres volumes: - db-data:/var/lib/postgresql expose: - 5432 healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres -d msclientdb"] interval: 10s timeout: 5s retries: 5 volumes: db-data: