| 12345678910111213141516 |
- services:
- lfj-rebalancer:
- build: .
- restart: unless-stopped
- volumes:
- - ./data:/app/data
- env_file:
- - .env
- environment:
- - NODE_ENV=production
- healthcheck:
- test: ['CMD', 'curl', '-f', 'http://localhost:3000']
- interval: 30s
- timeout: 5s
- retries: 3
- start_period: 30s
|