removed stacks and using normal docker but with seperated compose files
This commit is contained in:
23
docker-compose.d/Tools/p2pool.yml
Normal file
23
docker-compose.d/Tools/p2pool.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
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 "48Whozrwq4jDA6JZ3vJw3Z22VFCCdi4MnLDH5WfHX33w8ehHZ3hRsJC6JBFmgau8BjbXzfL6Um1GdGNfzzbqueDGPhSusji"
|
||||
--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
|
||||
Reference in New Issue
Block a user