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 \ | |
--restart=always \ | |
--volume=/:/rootfs:ro \ | |
--volume=/var/run:/var/run:rw \ | |
--volume=/sys:/sys:ro \ | |
--volume=/var/lib/docker/:/var/lib/docker:ro \ | |
--publish=8080:8080 \ | |
--detach=true \ | |
--name=cadvisor \ | |
google/cadvisor: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 nano /lib/systemd/system/docker.service | |
#### | |
ExecStart=/usr/bin/dockerd -H fd:// -H tcp://0.0.0.0:2375 | |
#### | |
systemctl daemon-reload | |
sudo service docker restart |
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 su | |
vi /var/packages/Docker/etc/dockerd.json | |
like This | |
{ | |
"ipv6": true, | |
"insecure-registries":["rubyon.co.kr:5555"], | |
"hosts": ["tcp://0.0.0.0:2375", "unix:///var/run/docker.sock"] |
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 -it \ | |
--name=portainer \ | |
--restart=always \ | |
-v /home/docker/portainer/data:/data \ | |
-p 9000:9000 \ | |
portainer/portainer |
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 plexconnect \ | |
--net=rubyon \ | |
--ip=192.168.10.11 \ | |
-v /home/docker/plexconnect:/plexconnect \ | |
-e PLEXCONNECT_IP_PLEXCONNECT_EXTERNAL=192.168.10.11 \ | |
varju/plexconnect |
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
tar zcf torrentsT.dlm INFO search.php |
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
{ | |
"name": "Torrents :: T", | |
"displayname": "Torrents :: T", | |
"description": "Made by RubyOn.co.kr", | |
"version": "1.0", | |
"majorversion": "0", | |
"minorversion": "0", | |
"minfirmware": "0", | |
"accountsupport": true, | |
"site": "https://bezze.me", |
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, | |
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
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 |