24 lines
599 B
YAML
24 lines
599 B
YAML
services:
|
|
p2pool:
|
|
image: sethsimmons/p2pool:latest
|
|
restart: unless-stopped
|
|
container_name: p2pool
|
|
tty: true
|
|
stdin_open: true
|
|
volumes:
|
|
- p2pool-data:/home/p2pool
|
|
- /dev/hugepages:/dev/hugepages:rw
|
|
ports:
|
|
- 3333:3333
|
|
- 37889:37889
|
|
command: >-
|
|
--wallet "452KRkV1ekYiMh1iy6g3TWbBUGjcJLZH8NYbcd8uaso7Z65CxHsjCmshNaRikDWnRy84kkDZxSfw7DXitNQvhpPW3rmRasA"
|
|
--stratum "0.0.0.0:3333" --p2p "0.0.0.0:37889" --rpc-port "18089"
|
|
--host "monerod"
|
|
--loglevel 1
|
|
|
|
volumes:
|
|
p2pool-data:
|
|
name: p2pool-data
|
|
external: true
|