| 123456789101112131415161718192021 |
- services:
- alpha-miner:
- image: ghcr.io/unicitynetwork/alpha-miner:latest
- container_name: alpha-miner
- deploy:
- resources:
- limits:
- cpus: ${CPUS}
- extra_hosts:
- - "host.docker.internal:host-gateway"
- volumes:
- - ./addrs.txt:/home/miner/addrs.txt
- command:
- - "-o"
- - "host.docker.internal:8589"
- - "-O"
- - ${RPC_CREDENTIALS}
- - "--largepages"
- - "--no-affinity"
- restart: "no"
-
|