mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-11-17 16:27:45 +00:00
6 lines
223 B
Bash
Executable file
6 lines
223 B
Bash
Executable file
#!/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
|