Closed JamesM92 closed 3 years ago
Maybe you need to move environment
values to command
command: /xmr/xmrig -o=rx.unmineable.com:3333 -u= ....
Looks like that was able to straighten it out, thank you.
For anybody else wanting a docker compose file here is the final version im using that is working.
(I'm using unminable as my pool)
services:
xmrig:
image: giansalex/monero-miner:latest
container_name: xmrig
restart: always
ports:
- 3333:3333
command:
- /xmr/xmrig
- -orx.unmineable.com:3333
- -uETH:0xcFEf314645xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.Vault
- --cpu-priority=0
Hello, i'm trying to deploy this using docker-compose. it is deploying but when it does it keeps having errors saying it can't find several .jsn files.
here is the code im using in my docker-compose.yml file