mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-11-17 16:27:45 +00:00
7 lines
223 B
Text
7 lines
223 B
Text
|
#!/bin/bash
|
||
|
echo ""
|
||
|
echo ""
|
||
|
echo "Building and Running P2Pool docker-compose Configuration"
|
||
|
docker build -t p2pool_config:latest cfg
|
||
|
docker run -it --rm -v $PWD:/docker-compose --user $(id -u):$(id -g) p2pool_config:latest
|