Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.38.2 -->
<interface>
<requires lib="gtk+" version="3.24"/>
<object class="GtkWindow" id="window">
<property name="visible">True</property>
<property name="can-focus">True</property>
<property name="default-width">440</property>
<property name="default-height">250</property>
<child>
require "gtk3"
builder_file = "#{File.expand_path(File.dirname(__FILE__))}/builder-thread.ui"
builder = Gtk::Builder.new(:file => builder_file)
window = builder.get_object("window")
window.signal_connect("destroy") do
Gtk.main_quit
end
FROM alpine
MAINTAINER 1.0 rubyon@me.com
ENV USER_ID="userid" AUTH_CODE="authcode"
RUN echo "dnsever-ddns-updater id \"\$1\" && dnsever-ddns-updater auth_code \"\$2\" && dnsever-ddns-updater start && /bin/sh" > start.sh
RUN chmod +x start.sh
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 \
sudo docker run -d \
--name plex \
--net=host \
--restart=always \
-e PUID=0 \
-e PGID=0 \
-e TZ="Asia/Seoul" \
-v /home/docker/plex/config:/config \
-v /home/docker/plex/transcode:/transcode \
-v /home/rubyon/Shared/Downloads:/Downloads \
<?php
$JSONOutput = array();
$TotalResults = 0;
$loginUrl = 'https://bezze.me/login.php';
// init curl
$ch = curl_init();
<?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, |
sudo docker run -dit \
--name tvhproxy \
--restart=always \
-p 5004:5004 \
rubyon.co.kr:5555/tvhproxy
sudo docker run -d \
--name=couchpotato \
--restart=always \
-v /home/docker/couchpotato/config:/config \
-v /home/rubyon/Shared/CouchPotatoDownloads:/downloads \
-v /home/docker/couchpotato/movies:/movies \
-e PGID=0 -e PUID=0 \
-e TZ="Asia/Seoul" \
-p 5050:5050 \
linuxserver/couchpotato
# MySQL Install
sudo docker run -d \
--restart=always \
--name wordpress-db \
-e MYSQL_ROOT_PASSWORD='98010~!@' \
-v /home/docker/wordpress/data:/var/lib/mysql \
-e MYSQL_DATABASE=wordpress \
mysql
# WordPress Install