Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1 KB

README.md

File metadata and controls

25 lines (20 loc) · 1 KB

docker-bubbleupnpserver

GitHub Workflow Status Docker Pulls

Logo from BubbleUPnP

Docker image for BubbleUPnP Server installation.

Quick start

$ {
printf "Clean potential old instances...\\n";
docker stop bubbleupnpserver &>/dev/null;
docker rm bubbleupnpserver &>/dev/null;
docker rmi nventiveux/docker-bubbleupnpserver &>/dev/null;

printf "Starting up bubbleupnpserver container...\\n";
docker run -d \
  --name bubbleupnpserver \
  --net=host \
  --restart=always \
  nventiveux/docker-bubbleupnpserver -nologfile;
}