docker-compose.yml 452 B

123456789101112131415161718192021
  1. services:
  2. alpha-pool-miner:
  3. image: ghcr.io/unicitynetwork/alpha-miner:latest
  4. container_name: alpha-pool-miner
  5. deploy:
  6. resources:
  7. limits:
  8. cpus: ${CPUS}
  9. extra_hosts:
  10. - "host.docker.internal:host-gateway"
  11. command:
  12. - "-o"
  13. - "stratum+tcp://unicity-pool.com:3054"
  14. - "-u"
  15. - ${ADDRESS}
  16. - "-t"
  17. - ${CPUS}
  18. - "--largepages"
  19. - "--no-affinity"
  20. restart: "no"