30 lines
789 B
YAML
30 lines
789 B
YAML
services:
|
|
api:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: cryptowallet-api
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3001:3001"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
API_PORT: "3001"
|
|
# Внешняя БД (72.56.9.76) — postgres-сервис не нужен.
|
|
# DB-creds + master-key читаются из Vault через AppRole.
|
|
volumes:
|
|
# Audit-log: mnemonic reveal / wallet create / send — для compliance/forensics
|
|
- ./logs:/app/logs
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-qO-", "http://localhost:3001/api/health"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 15s
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "20m"
|
|
max-file: "5"
|