docker-compose.ea.yml 334 B

12345678910111213141516
  1. services:
  2. lfj-rebalancer:
  3. build: .
  4. restart: unless-stopped
  5. volumes:
  6. - ./data:/app/data
  7. env_file:
  8. - .env
  9. environment:
  10. - NODE_ENV=production
  11. healthcheck:
  12. test: ['CMD', 'curl', '-f', 'http://localhost:3000']
  13. interval: 30s
  14. timeout: 5s
  15. retries: 3
  16. start_period: 30s