removed stacks and using normal docker but with seperated compose files

This commit is contained in:
poslop
2024-10-29 13:51:35 -05:00
parent 0e5da4b9f1
commit e64814cebb
17 changed files with 289 additions and 241 deletions

View 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