This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker run -d \ | |
--name gitea \ | |
--restart=always \ | |
-p 10080:3000 \ | |
-p 10022:22 \ | |
--link gitea-db:gitea-db \ | |
-v /home/docker/gitea:/data \ | |
gitea/gitea:latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker run -d \ | |
--name gitea \ | |
--restart=always \ | |
-p 10080:3000 \ | |
-p 10022:22 \ | |
--link gitea-db:gitea-db \ | |
-v /home/docker/gitea:/data \ | |
gitea/gitea:latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker run -d \ | |
--name gitea \ | |
--restart=always \ | |
-p 10080:3000 \ | |
-p 10022:22 \ | |
-v /home/docker/gitea:/data \ | |
gitea/gitea:latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker run -d \ | |
--name registry-web \ | |
--restart=always \ | |
-p 8082:8080 \ | |
--link registry \ | |
-e REGISTRY_URL=http://rubyon.co.kr:5555/v2 \ | |
-e REGISTRY_NAME=rubyon.co.kr:5555 \ | |
hyper/docker-registry-web |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker run -d \ | |
--restart=always \ | |
--name=tvheadend \ | |
--net=host \ | |
-e TZ="Asia/Seoul" \ | |
-v /home/docker/tvheadend/config:/config \ | |
-v /home/docker/tvheadend/recordings:/recordings \ | |
-e PGID=0 -e PUID=0 \ | |
-p 9981:9981\ | |
-p 9982:9982 \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM linuxserver/tvheadend | |
MAINTAINER 1.0 [email protected] | |
RUN apk update | |
RUN apk add git gcc python-dev libxml2-dev libxslt-dev musl-dev py-pip | |
RUN pip install --upgrade pip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dockerfile 을 사용하여 이미지 빌드 | |
sudo docker build -t rubyon.co.kr:5555/tvheadend tvheadend | |
# 빌드된 이미지를 Registry 로 Push | |
sudo docker push rubyon.co.kr:5555/tvheadend |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker run -d \ | |
--restart=always \ | |
--name=plexpy \ | |
--net=host \ | |
-v /home/docker/plexpy/config:/config \ | |
-v /home/docker/plexpy/logs:/logs:ro \ | |
-e PGID=0 -e PUID=0 \ | |
-e TZ="Asia/Seoul" \ | |
-p 8181:8181 \ | |
linuxserver/plexpy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker run -d \ | |
--name=muximux \ | |
-v /home/docker/muximux/config:/config \ | |
-e PGID=1000 -e PUID=1000 \ | |
-e TZ="Asia/Seoul" \ | |
-p 8088:80 \ | |
linuxserver/muximux |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*********************************************************************\ | |
| (c)2011-2015 Synoboost http://www.synoboost.com | | |
|---------------------------------------------------------------------| | |
| This program is free software; you can redistribute it and/or | | |
| modify it under the terms of the GNU General Public License | | |
| as published by the Free Software Foundation; either version 2 | | |
| of the License, or (at your option) any later version. | | |
| | | |
| This program is distributed in the hope that it will be useful, | |