docker-compose.yml 423 B

123456789101112131415161718
  1. name: antnode
  2. services:
  3. node:
  4. image: ghcr.io/lushdog/antnode:latest
  5. restart: unless-stopped
  6. network_mode: 'host'
  7. volumes:
  8. - ./antnode_data:/root/antnode_data
  9. - ./autonom_data:/root/.local/share/autonom
  10. environment:
  11. - REWARD_ADDRESS=${REWARD_ADDRESS}
  12. - NODE_COUNT=${NODE_COUNT}
  13. logging:
  14. driver: "json-file"
  15. options:
  16. max-file: "5"
  17. max-size: 2048m