17 lines
345 B
Bash
17 lines
345 B
Bash
docker stop webhook
|
|
docker rm webhook
|
|
docker rmi webhook
|
|
|
|
docker build . -t webhook
|
|
docker run -d \
|
|
-e "HOOKPORT=5001" \
|
|
-e "URIPATH=/webhook" \
|
|
-e "CALLBACKURL=http://192.168.3.6:5001/api/v1/hooks/d6ef8912e8bd37776e654cbc14c2629c/result" \
|
|
-p 6000:6000 \
|
|
--name webhook \
|
|
-h webhook \
|
|
--restart always \
|
|
webhook
|
|
|
|
docker logs -f webhook
|