├── alpine-xfce4-novnc ├── Dockerfile ├── Dockerfile.armhf ├── README.md ├── chrome_2018-09-23_07-55-15.png ├── config │ └── xfce4 │ │ ├── helpers.rc │ │ ├── panel │ │ ├── launcher-10 │ │ │ └── 15185869012.desktop │ │ ├── launcher-11 │ │ │ └── 15185869023.desktop │ │ ├── launcher-16 │ │ │ └── 15185869895.desktop │ │ ├── launcher-17 │ │ │ └── 15185870046.desktop │ │ ├── launcher-18 │ │ │ └── 15185870187.desktop │ │ └── launcher-9 │ │ │ └── 15185869011.desktop │ │ ├── terminal │ │ └── terminalrc │ │ └── xfconf │ │ └── xfce-perchannel-xml │ │ ├── xfce4-desktop.xml │ │ ├── xfce4-panel.xml │ │ ├── xfwm4.xml │ │ └── xsettings.xml ├── run_novnc └── stack.yml ├── aria2c └── Dockerfile ├── armhf-alpine-glibc └── Dockerfile ├── armhf-buildpack-deps └── jessie │ ├── curl │ └── Dockerfile │ └── scm │ └── Dockerfile ├── armhf-debian └── jessie │ └── qemu │ └── Dockerfile ├── armhf-node └── 4.1 │ └── slim │ └── Dockerfile ├── armhf-visualizer └── Dockerfile ├── darkhttpd ├── Dockerfile └── docker-compose.yml ├── dnsmasq ├── Dockerfile └── Dockerfile.armhf ├── docute └── Dockerfile ├── dog-tunnel ├── README.md ├── build.sh ├── lite_v1.30 │ ├── amd64 │ │ └── dog-tunnel │ └── arm │ │ └── dog-tunnel └── make.sh ├── envtpl ├── Dockerfile ├── LICENSE ├── README.md ├── README.md.orig ├── build.sh ├── cmd │ └── root.go ├── envtpl ├── glide.lock ├── glide.yaml ├── main.go ├── make-pi.sh ├── make.sh ├── test │ ├── greeting.tpl │ ├── test.sh │ ├── test.tpl │ └── test.txt └── vendor │ └── github.com │ ├── Masterminds │ └── sprig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── example_test.go │ │ ├── functions.go │ │ ├── functions_test.go │ │ ├── glide.lock │ │ └── glide.yaml │ ├── aokoli │ └── goutils │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── randomstringutils.go │ │ ├── randomstringutils_test.go │ │ ├── stringutils.go │ │ ├── stringutils_test.go │ │ ├── wordutils.go │ │ └── wordutils_test.go │ ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go │ ├── satori │ └── go.uuid │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchmarks_test.go │ │ ├── uuid.go │ │ └── uuid_test.go │ └── spf13 │ ├── cobra │ ├── .gitignore │ ├── .mailmap │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── bash_completions.go │ ├── bash_completions.md │ ├── bash_completions_test.go │ ├── cobra.go │ ├── cobra │ │ ├── cmd │ │ │ ├── add.go │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ ├── init.go │ │ │ ├── licenses.go │ │ │ └── root.go │ │ └── main.go │ ├── cobra_test.go │ ├── command.go │ ├── command_notwin.go │ ├── command_test.go │ ├── command_win.go │ └── doc │ │ ├── cmd_test.go │ │ ├── man_docs.go │ │ ├── man_docs.md │ │ ├── man_docs_test.go │ │ ├── man_examples_test.go │ │ ├── md_docs.go │ │ ├── md_docs.md │ │ ├── md_docs_test.go │ │ └── util.go │ └── pflag │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bool.go │ ├── bool_test.go │ ├── count.go │ ├── count_test.go │ ├── duration.go │ ├── example_test.go │ ├── export_test.go │ ├── flag.go │ ├── flag_test.go │ ├── float32.go │ ├── float64.go │ ├── golangflag.go │ ├── golangflag_test.go │ ├── int.go │ ├── int32.go │ ├── int64.go │ ├── int8.go │ ├── int_slice.go │ ├── int_slice_test.go │ ├── ip.go │ ├── ip_test.go │ ├── ipmask.go │ ├── ipnet.go │ ├── ipnet_test.go │ ├── string.go │ ├── string_array.go │ ├── string_array_test.go │ ├── string_slice.go │ ├── string_slice_test.go │ ├── uint.go │ ├── uint16.go │ ├── uint32.go │ ├── uint64.go │ ├── uint8.go │ └── verify │ ├── all.sh │ ├── gofmt.sh │ └── golint.sh ├── ffmpeg └── Dockerfile ├── forego ├── .dockerignore ├── Godeps │ ├── Godeps.json │ └── Readme ├── Makefile ├── README.md ├── README.md.orig ├── barrier.go ├── bin │ └── release ├── circle.yml ├── command.go ├── config.go ├── config_test.go ├── eg │ ├── .env │ ├── Procfile │ ├── error │ ├── spawnee │ ├── spawner │ ├── ticker │ └── utf8 ├── env.go ├── env_test.go ├── error.go ├── fixtures │ ├── configs │ │ └── .forego │ ├── envs │ │ ├── .env1 │ │ └── .env2 │ ├── large_stdout │ │ ├── Procfile │ │ └── stdout.rb │ └── multiline │ │ ├── Procfile │ │ └── stdout.rb ├── forego ├── help.go ├── main.go ├── make-pi.sh ├── outlet.go ├── process.go ├── procfile.go ├── run.go ├── start.go ├── start_test.go ├── unix.go ├── update.go ├── util.go ├── vendor │ └── github.com │ │ ├── daviddengcn │ │ └── go-colortext │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ct.go │ │ │ ├── ct_ansi.go │ │ │ └── ct_win.go │ │ └── subosito │ │ └── gotenv │ │ ├── .env │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── gotenv.go ├── version.go ├── version_test.go └── windows.go ├── freedos ├── Dockerfile ├── README.md └── run_qemu ├── gitlab ├── Dockerfile ├── RELEASE └── assets │ ├── gitlab.rb │ ├── setup │ ├── sshd_config │ ├── update-permissions │ └── wrapper ├── golang ├── 1.7 │ ├── alpine-build │ │ ├── 17847.patch │ │ ├── Dockerfile │ │ ├── go-wrapper │ │ └── no-pic.patch │ └── alpine │ │ ├── 17847.patch │ │ ├── Dockerfile │ │ ├── go-wrapper │ │ ├── make-pi.sh.template │ │ └── no-pic.patch └── 1.8 │ ├── Dockerfile │ └── go-wrapper ├── gotty ├── Dockerfile └── Dockerfile.armhf ├── h5ai ├── amd64 │ ├── Dockerfile │ ├── entrypoint.sh │ └── router.php ├── armhf │ ├── Dockerfile │ ├── entrypoint.sh │ └── router.php └── docker-compose.yml ├── jenkinsci ├── CONTRIBUTING.md ├── Dockerfile ├── Jenkinsfile ├── README.md ├── docker-compose.yml ├── init.groovy ├── install-plugins.sh ├── jenkins-support ├── jenkins.sh ├── plugins.sh ├── tests │ ├── functions.bats │ ├── install-plugins.bats │ ├── install-plugins │ │ ├── Dockerfile │ │ └── update │ │ │ └── Dockerfile │ ├── plugins │ │ ├── Dockerfile │ │ └── plugins.txt │ ├── runtime.bats │ ├── test_helpers.bash │ └── upgrade-plugins │ │ └── Dockerfile ├── update-official-library.sh └── weekly.sh ├── kk └── Dockerfile ├── kodexplorer ├── README.md ├── amd64 │ ├── Dockerfile │ └── entrypoint.sh ├── armhf │ ├── Dockerfile │ └── entrypoint.sh └── php │ ├── amd64 │ ├── Dockerfile │ └── entrypoint.sh │ └── armhf │ ├── Dockerfile │ └── entrypoint.sh ├── leanote ├── Dockerfile ├── README.md ├── app.conf ├── docker-compose.yml ├── get-data.sh └── initdb.sh ├── libguestfs └── Dockerfile ├── mariadb ├── Dockerfile ├── README.md └── files │ └── run.sh ├── markdown-to-slides ├── Dockerfile ├── README.md ├── docker-compose.yml ├── docker-entrypoint.sh ├── example.md ├── index.html.tmpl ├── slides.md └── styles.css ├── markline ├── Dockerfile ├── data │ └── life.md ├── docker-compose.yml ├── life.md └── with_letsencrypt │ ├── Dockerfile │ ├── data │ └── life.md │ ├── docker-compose.yml │ └── life.md ├── mongo ├── Dockerfile └── docker-entrypoint.sh ├── mysql └── 5.7 │ ├── Dockerfile │ └── docker-entrypoint.sh ├── nextcloud └── 11.0 │ └── apache │ ├── Dockerfile │ └── docker-entrypoint.sh ├── nfs-server └── v3 │ ├── Dockerfile │ ├── Dockerfile.armhf │ └── entrypoint.sh ├── nginx-proxy ├── .dockerignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── docker-compose-separate-containers.yml ├── docker-compose.yml ├── docker-entrypoint.sh ├── nginx.tmpl ├── rpi-yml-template │ ├── README.md │ ├── aria2 │ │ ├── Dockerfile │ │ └── docker-compose.yml │ ├── btsync │ │ ├── README.md │ │ └── docker-compose.yml │ ├── docker-compose.template │ ├── gogs │ │ └── docker-compose.yml │ ├── nginx-proxy │ │ ├── docker-compose.yml │ │ └── vhost.d │ │ │ └── app.mydomain.com │ └── portainer │ │ └── docker-compose.yml └── test │ ├── README.md │ ├── default-host.bats │ ├── docker.bats │ ├── headers.bats │ ├── lib │ ├── README.md │ ├── bats │ │ ├── batslib.bash │ │ └── batslib │ │ │ └── output.bash │ ├── docker_helpers.bash │ ├── helpers.bash │ └── ssl │ │ ├── nginx-proxy.bats.crt │ │ └── nginx-proxy.bats.key │ ├── multiple-hosts.bats │ ├── multiple-ports.bats │ ├── ssl.bats │ ├── test_helpers.bash │ ├── web_helpers │ └── webserver.py │ └── wildcard-hosts.bats ├── nginx └── mainline │ └── alpine │ ├── Dockerfile │ ├── nginx.conf │ └── nginx.vh.default.conf ├── node ├── 4.7 │ ├── alpine-onbuild │ │ ├── Dockerfile │ │ └── README.md │ └── alpine │ │ ├── Dockerfile │ │ └── README.md └── 6.9 │ ├── alpine-onbuild │ ├── Dockerfile │ └── README.md │ └── alpine │ ├── Dockerfile │ └── README.md ├── openjdk └── 8-jdk │ └── alpine │ ├── Dockerfile │ └── README.md ├── owncloud └── 9.1 │ └── apache │ ├── Dockerfile │ └── docker-entrypoint.sh ├── php ├── 5.6 │ └── apache │ │ ├── Dockerfile │ │ ├── apache2-foreground │ │ ├── docker-php-entrypoint │ │ ├── docker-php-ext-configure │ │ ├── docker-php-ext-enable │ │ ├── docker-php-ext-install │ │ └── docker-php-source └── 7.1 │ ├── alpine │ ├── Dockerfile │ ├── docker-php-entrypoint │ ├── docker-php-ext-configure │ ├── docker-php-ext-enable │ ├── docker-php-ext-install │ └── docker-php-source │ ├── apache │ ├── Dockerfile │ ├── apache2-foreground │ ├── docker-php-entrypoint │ ├── docker-php-ext-configure │ ├── docker-php-ext-enable │ ├── docker-php-ext-install │ └── docker-php-source │ └── fpm │ ├── Dockerfile │ ├── alpine │ ├── Dockerfile │ ├── docker-php-entrypoint │ ├── docker-php-ext-configure │ ├── docker-php-ext-enable │ ├── docker-php-ext-install │ ├── docker-php-source │ └── gd │ │ └── Dockerfile │ ├── docker-php-entrypoint │ ├── docker-php-ext-configure │ ├── docker-php-ext-enable │ ├── docker-php-ext-install │ └── docker-php-source ├── postgres ├── 9.4 │ ├── Dockerfile │ ├── alpine │ │ ├── Dockerfile │ │ └── docker-entrypoint.sh │ └── docker-entrypoint.sh └── 9.6 │ ├── Dockerfile │ ├── alpine │ ├── Dockerfile │ └── docker-entrypoint.sh │ └── docker-entrypoint.sh ├── privatebin ├── Dockerfile ├── LICENSE ├── README.md ├── build.sh ├── buildNoCache.sh ├── cfg │ ├── .htaccess │ └── conf.ini ├── docker-compose.yml ├── entrypoint.sh └── files │ ├── nginx.conf │ ├── php-fpm.conf │ └── supervisord.conf ├── pugo ├── LICENSE ├── README.md ├── app │ ├── asset │ │ └── asset.go │ ├── cmd │ │ ├── asset.go │ │ ├── build.go │ │ ├── flags.go │ │ ├── init.go │ │ ├── server.go │ │ └── version.go │ ├── compile │ │ ├── compile.go │ │ ├── context.go │ │ ├── copy.go │ │ └── read.go │ ├── helper │ │ ├── gravatar │ │ │ ├── gravatar.go │ │ │ └── gravatar_test.go │ │ ├── i18n │ │ │ ├── group.go │ │ │ ├── i18n.go │ │ │ ├── i18n_test.go │ │ │ └── i18n_test.toml │ │ ├── markdown │ │ │ ├── markdown.go │ │ │ ├── markdown_test.go │ │ │ ├── markdown_test.html │ │ │ └── markdown_test.md │ │ ├── pager │ │ │ ├── pager.go │ │ │ └── pager_test.go │ │ ├── printer │ │ │ ├── logf.go │ │ │ └── printer.go │ │ ├── watcher │ │ │ ├── watcher.go │ │ │ └── watcher_test.go │ │ └── ziper │ │ │ ├── gzip.go │ │ │ ├── gzip_test.go │ │ │ └── gzip_test.txt │ ├── model │ │ ├── author │ │ │ ├── author.go │ │ │ └── author_test.go │ │ ├── base │ │ │ ├── base.go │ │ │ ├── meta.go │ │ │ ├── meta_test.go │ │ │ ├── nav.go │ │ │ └── nav_test.go │ │ ├── index │ │ │ ├── index.go │ │ │ ├── index_test.go │ │ │ └── index_test.html │ │ ├── model.go │ │ ├── node │ │ │ ├── nodes.go │ │ │ └── nodes_test.go │ │ ├── page │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── page.go │ │ │ ├── page_test.go │ │ │ ├── pages.go │ │ │ └── testdata │ │ │ │ ├── no_createtime.md │ │ │ │ ├── page.md │ │ │ │ └── unknown_meta.md │ │ ├── post │ │ │ ├── archive.go │ │ │ ├── post.go │ │ │ ├── posts.go │ │ │ └── tag.go │ │ ├── theme │ │ │ ├── meta.go │ │ │ └── theme.go │ │ └── third │ │ │ ├── analytics.go │ │ │ └── comment.go │ └── vars │ │ └── vars.go ├── codecov.yml ├── coverage.txt ├── dest │ ├── 2017 │ │ └── 1 │ │ │ └── 1 │ │ │ └── welcome.html │ ├── about.html │ ├── archive.html │ ├── css │ │ ├── bootstrap.min.css │ │ ├── prism.css │ │ └── style.css │ ├── favicon.ico │ ├── feed.xml │ ├── index.html │ ├── js │ │ ├── bootstrap.min.js │ │ ├── jquery-2.1.4.min.js │ │ └── prism.min.js │ ├── media │ │ └── golang.png │ ├── posts │ │ └── 1.html │ ├── robots.txt │ ├── sitemap.xml │ └── tags │ │ └── pugo.html ├── lang │ ├── en.toml │ ├── i18n.toml │ └── zh-cn.toml ├── main.go ├── make-pi.sh ├── media │ └── golang.png ├── meta.toml ├── page │ └── about.md ├── post │ └── welcome.md ├── pugo ├── readme.md ├── test.sh ├── theme │ ├── archive.html │ ├── embed │ │ ├── analytics.html │ │ ├── comment.html │ │ ├── footer.html │ │ ├── header.html │ │ └── meta.html │ ├── page.html │ ├── post.html │ ├── posts.html │ ├── static │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── prism.css │ │ │ └── style.css │ │ ├── favicon.ico │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-2.1.4.min.js │ │ │ └── prism.min.js │ │ └── robots.txt │ └── theme.toml └── vendor │ ├── github.com │ ├── BurntSushi │ │ └── toml │ │ │ ├── COMPATIBLE │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── decode_meta.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encoding_types.go │ │ │ ├── encoding_types_1.1.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ ├── session.vim │ │ │ ├── type_check.go │ │ │ └── type_fields.go │ ├── Unknwon │ │ └── com │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cmd.go │ │ │ ├── convert.go │ │ │ ├── dir.go │ │ │ ├── file.go │ │ │ ├── html.go │ │ │ ├── http.go │ │ │ ├── math.go │ │ │ ├── path.go │ │ │ ├── regex.go │ │ │ ├── slice.go │ │ │ ├── string.go │ │ │ ├── time.go │ │ │ └── url.go │ ├── fatih │ │ └── color │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ └── doc.go │ ├── gorilla │ │ └── feeds │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── atom.go │ │ │ ├── doc.go │ │ │ ├── feed.go │ │ │ ├── rss.go │ │ │ └── uuid.go │ ├── jtolds │ │ └── gls │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── gen_sym.go │ │ │ ├── gid.go │ │ │ ├── id_pool.go │ │ │ ├── stack_tags.go │ │ │ ├── stack_tags_js.go │ │ │ └── stack_tags_main.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── LICENSE │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ └── noncolorable.go │ │ └── go-isatty │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── isatty_appengine.go │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_solaris.go │ │ │ └── isatty_windows.go │ ├── mcuadros │ │ └── go-version │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── compare.go │ │ │ ├── constraint.go │ │ │ ├── doc.go │ │ │ ├── group.go │ │ │ ├── normalize.go │ │ │ ├── sort.go │ │ │ └── stability.go │ ├── russross │ │ └── blackfriday │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── latex.go │ │ │ ├── markdown.go │ │ │ └── smartypants.go │ ├── shurcooL │ │ └── sanitized_anchor_name │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── main.go │ ├── smartystreets │ │ ├── assertions │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── collections.go │ │ │ ├── doc.go │ │ │ ├── equality.go │ │ │ ├── filter.go │ │ │ ├── internal │ │ │ │ ├── go-render │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── render │ │ │ │ │ │ └── render.go │ │ │ │ └── oglematchers │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── any_of.go │ │ │ │ │ ├── contains.go │ │ │ │ │ ├── deep_equals.go │ │ │ │ │ ├── equals.go │ │ │ │ │ ├── greater_or_equal.go │ │ │ │ │ ├── greater_than.go │ │ │ │ │ ├── less_or_equal.go │ │ │ │ │ ├── less_than.go │ │ │ │ │ ├── matcher.go │ │ │ │ │ ├── not.go │ │ │ │ │ └── transform_description.go │ │ │ ├── messages.go │ │ │ ├── panic.go │ │ │ ├── quantity.go │ │ │ ├── serializer.go │ │ │ ├── strings.go │ │ │ ├── time.go │ │ │ └── type.go │ │ └── goconvey │ │ │ ├── LICENSE.md │ │ │ └── convey │ │ │ ├── assertions.go │ │ │ ├── context.go │ │ │ ├── convey.goconvey │ │ │ ├── discovery.go │ │ │ ├── doc.go │ │ │ ├── gotest │ │ │ └── utils.go │ │ │ ├── init.go │ │ │ ├── nilReporter.go │ │ │ └── reporting │ │ │ ├── console.go │ │ │ ├── doc.go │ │ │ ├── dot.go │ │ │ ├── gotest.go │ │ │ ├── init.go │ │ │ ├── json.go │ │ │ ├── printer.go │ │ │ ├── problems.go │ │ │ ├── reporter.go │ │ │ ├── reporting.goconvey │ │ │ ├── reports.go │ │ │ ├── statistics.go │ │ │ └── story.go │ ├── tidwall │ │ ├── gjson │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gjson.go │ │ │ └── logo.png │ │ └── match │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── match.go │ └── urfave │ │ └── cli │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.go │ │ ├── appveyor.yml │ │ ├── category.go │ │ ├── cli.go │ │ ├── command.go │ │ ├── context.go │ │ ├── errors.go │ │ ├── flag-types.json │ │ ├── flag.go │ │ ├── flag_generated.go │ │ ├── funcs.go │ │ ├── generate-flag-types │ │ ├── help.go │ │ └── runtests │ ├── golang.org │ └── x │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── html │ │ │ ├── atom │ │ │ ├── atom.go │ │ │ ├── gen.go │ │ │ └── table.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── escape.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ ├── render.go │ │ │ └── token.go │ │ └── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── unix │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── constants.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── gccgo_linux_sparc64.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_linux.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_no_getwd.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_linux.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_solaris_amd64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ └── ztypes_solaris_amd64.go │ ├── gopkg.in │ └── fsnotify.v1 │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go │ └── vendor.json ├── raspbian-novnc ├── Dockerfile ├── Dockerfile.armhf ├── README.md ├── keyboard ├── run_novnc └── stack.yml ├── raspbian-vnc ├── Dockerfile ├── Dockerfile.armhf ├── keyboard └── run_vnc ├── rpi-alpine-aria2 ├── Dockerfile ├── README.md ├── aria2.conf ├── ca-certificates.crt └── docker-compose.yml ├── rpi-alpine-grafana ├── Dockerfile ├── README.md ├── defaults.ini ├── docker-compose.production.yml ├── docker-compose.test.yml ├── docker-compose.yml ├── grafana.ini ├── run.sh ├── sample.ini └── sut │ ├── Dockerfile │ └── test.sh ├── rpi-alpine-phantomjs ├── Dockerfile ├── Makefile ├── README.md ├── build.patch ├── qtbase-0001-Fix-for-platform-socklen_t-on-other-C-libraries-than.patch └── qtwebkit-0001-Fix-musl-build.patch ├── rpi-alpine-seafile ├── Dockerfile ├── README.md ├── build.sh ├── docker-compose.yml ├── docker-run.sh └── seafile-server.patch ├── rpi-alpine-speedtest ├── Dockerfile └── README.md ├── rpi-alpine-yaaw ├── Dockerfile ├── README.md └── docker-compose.yml ├── rpi-alpine ├── Dockerfile └── sut │ └── sut.sh ├── rpi-resilio-sync ├── 2.4 │ └── alpine │ │ ├── Dockerfile │ │ ├── run_sync │ │ └── sync.conf.default ├── 2.5 │ ├── alpine │ │ ├── Dockerfile │ │ ├── run_sync │ │ └── sync.conf.default │ ├── ubuntu │ │ ├── Dockerfile │ │ ├── run_sync │ │ └── sync.conf.default │ └── x64 │ │ └── alpine │ │ ├── Dockerfile │ │ ├── run_sync │ │ └── sync.conf.default └── README.md ├── rpi-webui-aria2 ├── Dockerfile ├── README.md └── docker-compose.yml ├── sendclient └── Dockerfile ├── tale └── 1.2.14 │ └── Dockerfile ├── typecho ├── 1.0 │ ├── amd64 │ │ ├── Dockerfile │ │ └── entrypoint.sh │ └── armhf │ │ ├── Dockerfile │ │ └── entrypoint.sh └── dev │ ├── amd64 │ ├── Dockerfile │ └── entrypoint.sh │ ├── armhf │ ├── Dockerfile │ └── entrypoint.sh │ └── php │ ├── Dockerfile │ ├── Dockerfile.armhf │ └── entrypoint.sh └── zblog ├── amd64 ├── Dockerfile └── entrypoint.sh ├── armhf ├── Dockerfile └── entrypoint.sh └── php ├── amd64 ├── Dockerfile └── entrypoint.sh └── armhf ├── Dockerfile └── entrypoint.sh /alpine-xfce4-novnc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/alpine-xfce4-novnc/Dockerfile -------------------------------------------------------------------------------- /alpine-xfce4-novnc/Dockerfile.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/alpine-xfce4-novnc/Dockerfile.armhf -------------------------------------------------------------------------------- /alpine-xfce4-novnc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/alpine-xfce4-novnc/README.md -------------------------------------------------------------------------------- /alpine-xfce4-novnc/chrome_2018-09-23_07-55-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/alpine-xfce4-novnc/chrome_2018-09-23_07-55-15.png -------------------------------------------------------------------------------- /alpine-xfce4-novnc/config/xfce4/helpers.rc: -------------------------------------------------------------------------------- 1 | WebBrowser=chromium 2 | 3 | -------------------------------------------------------------------------------- /alpine-xfce4-novnc/config/xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/alpine-xfce4-novnc/config/xfce4/terminal/terminalrc -------------------------------------------------------------------------------- /alpine-xfce4-novnc/run_novnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/alpine-xfce4-novnc/run_novnc -------------------------------------------------------------------------------- /alpine-xfce4-novnc/stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/alpine-xfce4-novnc/stack.yml -------------------------------------------------------------------------------- /aria2c/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/aria2c/Dockerfile -------------------------------------------------------------------------------- /armhf-alpine-glibc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/armhf-alpine-glibc/Dockerfile -------------------------------------------------------------------------------- /armhf-buildpack-deps/jessie/curl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/armhf-buildpack-deps/jessie/curl/Dockerfile -------------------------------------------------------------------------------- /armhf-buildpack-deps/jessie/scm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/armhf-buildpack-deps/jessie/scm/Dockerfile -------------------------------------------------------------------------------- /armhf-debian/jessie/qemu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/armhf-debian/jessie/qemu/Dockerfile -------------------------------------------------------------------------------- /armhf-node/4.1/slim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/armhf-node/4.1/slim/Dockerfile -------------------------------------------------------------------------------- /armhf-visualizer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/armhf-visualizer/Dockerfile -------------------------------------------------------------------------------- /darkhttpd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/darkhttpd/Dockerfile -------------------------------------------------------------------------------- /darkhttpd/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/darkhttpd/docker-compose.yml -------------------------------------------------------------------------------- /dnsmasq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/dnsmasq/Dockerfile -------------------------------------------------------------------------------- /dnsmasq/Dockerfile.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/dnsmasq/Dockerfile.armhf -------------------------------------------------------------------------------- /docute/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/docute/Dockerfile -------------------------------------------------------------------------------- /dog-tunnel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/dog-tunnel/README.md -------------------------------------------------------------------------------- /dog-tunnel/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/dog-tunnel/build.sh -------------------------------------------------------------------------------- /dog-tunnel/lite_v1.30/amd64/dog-tunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/dog-tunnel/lite_v1.30/amd64/dog-tunnel -------------------------------------------------------------------------------- /dog-tunnel/lite_v1.30/arm/dog-tunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/dog-tunnel/lite_v1.30/arm/dog-tunnel -------------------------------------------------------------------------------- /dog-tunnel/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/dog-tunnel/make.sh -------------------------------------------------------------------------------- /envtpl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/Dockerfile -------------------------------------------------------------------------------- /envtpl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/LICENSE -------------------------------------------------------------------------------- /envtpl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/README.md -------------------------------------------------------------------------------- /envtpl/README.md.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/README.md.orig -------------------------------------------------------------------------------- /envtpl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/build.sh -------------------------------------------------------------------------------- /envtpl/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/cmd/root.go -------------------------------------------------------------------------------- /envtpl/envtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/envtpl -------------------------------------------------------------------------------- /envtpl/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/glide.lock -------------------------------------------------------------------------------- /envtpl/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/glide.yaml -------------------------------------------------------------------------------- /envtpl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/main.go -------------------------------------------------------------------------------- /envtpl/make-pi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/make-pi.sh -------------------------------------------------------------------------------- /envtpl/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/make.sh -------------------------------------------------------------------------------- /envtpl/test/greeting.tpl: -------------------------------------------------------------------------------- 1 | Hello {{.USER}} 2 | -------------------------------------------------------------------------------- /envtpl/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/test/test.sh -------------------------------------------------------------------------------- /envtpl/test/test.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/test/test.tpl -------------------------------------------------------------------------------- /envtpl/test/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/test/test.txt -------------------------------------------------------------------------------- /envtpl/vendor/github.com/Masterminds/sprig/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /envtpl/vendor/github.com/Masterminds/sprig/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/Masterminds/sprig/.travis.yml -------------------------------------------------------------------------------- /envtpl/vendor/github.com/Masterminds/sprig/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/Masterminds/sprig/CHANGELOG.md -------------------------------------------------------------------------------- /envtpl/vendor/github.com/Masterminds/sprig/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/Masterminds/sprig/LICENSE.txt -------------------------------------------------------------------------------- /envtpl/vendor/github.com/Masterminds/sprig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/Masterminds/sprig/README.md -------------------------------------------------------------------------------- /envtpl/vendor/github.com/Masterminds/sprig/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/Masterminds/sprig/functions.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/Masterminds/sprig/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/Masterminds/sprig/glide.lock -------------------------------------------------------------------------------- /envtpl/vendor/github.com/Masterminds/sprig/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/Masterminds/sprig/glide.yaml -------------------------------------------------------------------------------- /envtpl/vendor/github.com/aokoli/goutils/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/aokoli/goutils/LICENSE.txt -------------------------------------------------------------------------------- /envtpl/vendor/github.com/aokoli/goutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/aokoli/goutils/README.md -------------------------------------------------------------------------------- /envtpl/vendor/github.com/aokoli/goutils/stringutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/aokoli/goutils/stringutils.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/aokoli/goutils/wordutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/aokoli/goutils/wordutils.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/satori/go.uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/satori/go.uuid/.travis.yml -------------------------------------------------------------------------------- /envtpl/vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /envtpl/vendor/github.com/satori/go.uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/satori/go.uuid/README.md -------------------------------------------------------------------------------- /envtpl/vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/satori/go.uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/satori/go.uuid/uuid_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/.travis.yml -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/bash_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/bash_completions.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/bash_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/bash_completions.md -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/cobra/cmd/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/cobra/cmd/add.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/cobra/cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/cobra/cmd/init.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/cobra/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/cobra/cmd/root.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/cobra/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/cobra/main.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/cobra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/cobra_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/command_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/doc/cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/doc/cmd_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/doc/man_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/doc/man_docs.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/doc/man_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/doc/man_docs.md -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/doc/md_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/doc/md_docs.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/doc/md_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/doc/md_docs.md -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/doc/md_docs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/doc/md_docs_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/cobra/doc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/cobra/doc/util.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/bool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/bool_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/count_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/count_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/example_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/export_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/flag_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/golangflag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/golangflag_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/int_slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/int_slice_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/ip_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/ipnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/ipnet_test.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/verify/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/verify/all.sh -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/verify/gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/verify/gofmt.sh -------------------------------------------------------------------------------- /envtpl/vendor/github.com/spf13/pflag/verify/golint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/envtpl/vendor/github.com/spf13/pflag/verify/golint.sh -------------------------------------------------------------------------------- /ffmpeg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/ffmpeg/Dockerfile -------------------------------------------------------------------------------- /forego/.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | .git 3 | /forego 4 | -------------------------------------------------------------------------------- /forego/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/Godeps/Godeps.json -------------------------------------------------------------------------------- /forego/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/Godeps/Readme -------------------------------------------------------------------------------- /forego/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/Makefile -------------------------------------------------------------------------------- /forego/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/README.md -------------------------------------------------------------------------------- /forego/README.md.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/README.md.orig -------------------------------------------------------------------------------- /forego/barrier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/barrier.go -------------------------------------------------------------------------------- /forego/bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/bin/release -------------------------------------------------------------------------------- /forego/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/circle.yml -------------------------------------------------------------------------------- /forego/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/command.go -------------------------------------------------------------------------------- /forego/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/config.go -------------------------------------------------------------------------------- /forego/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/config_test.go -------------------------------------------------------------------------------- /forego/eg/.env: -------------------------------------------------------------------------------- 1 | FOO=bar 2 | 3 | #BAZ=buz 4 | -------------------------------------------------------------------------------- /forego/eg/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/eg/Procfile -------------------------------------------------------------------------------- /forego/eg/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/eg/error -------------------------------------------------------------------------------- /forego/eg/spawnee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/eg/spawnee -------------------------------------------------------------------------------- /forego/eg/spawner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/eg/spawner -------------------------------------------------------------------------------- /forego/eg/ticker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/eg/ticker -------------------------------------------------------------------------------- /forego/eg/utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/eg/utf8 -------------------------------------------------------------------------------- /forego/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/env.go -------------------------------------------------------------------------------- /forego/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/env_test.go -------------------------------------------------------------------------------- /forego/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/error.go -------------------------------------------------------------------------------- /forego/fixtures/configs/.forego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/fixtures/configs/.forego -------------------------------------------------------------------------------- /forego/fixtures/envs/.env1: -------------------------------------------------------------------------------- 1 | env1=present 2 | -------------------------------------------------------------------------------- /forego/fixtures/envs/.env2: -------------------------------------------------------------------------------- 1 | env2=present 2 | -------------------------------------------------------------------------------- /forego/fixtures/large_stdout/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/fixtures/large_stdout/Procfile -------------------------------------------------------------------------------- /forego/fixtures/large_stdout/stdout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/fixtures/large_stdout/stdout.rb -------------------------------------------------------------------------------- /forego/fixtures/multiline/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/fixtures/multiline/Procfile -------------------------------------------------------------------------------- /forego/fixtures/multiline/stdout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/fixtures/multiline/stdout.rb -------------------------------------------------------------------------------- /forego/forego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/forego -------------------------------------------------------------------------------- /forego/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/help.go -------------------------------------------------------------------------------- /forego/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/main.go -------------------------------------------------------------------------------- /forego/make-pi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/make-pi.sh -------------------------------------------------------------------------------- /forego/outlet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/outlet.go -------------------------------------------------------------------------------- /forego/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/process.go -------------------------------------------------------------------------------- /forego/procfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/procfile.go -------------------------------------------------------------------------------- /forego/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/run.go -------------------------------------------------------------------------------- /forego/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/start.go -------------------------------------------------------------------------------- /forego/start_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/start_test.go -------------------------------------------------------------------------------- /forego/unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/unix.go -------------------------------------------------------------------------------- /forego/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/update.go -------------------------------------------------------------------------------- /forego/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/util.go -------------------------------------------------------------------------------- /forego/vendor/github.com/daviddengcn/go-colortext/ct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/vendor/github.com/daviddengcn/go-colortext/ct.go -------------------------------------------------------------------------------- /forego/vendor/github.com/subosito/gotenv/.env: -------------------------------------------------------------------------------- 1 | HELLO=world 2 | -------------------------------------------------------------------------------- /forego/vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | annotate.json 3 | -------------------------------------------------------------------------------- /forego/vendor/github.com/subosito/gotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/vendor/github.com/subosito/gotenv/LICENSE -------------------------------------------------------------------------------- /forego/vendor/github.com/subosito/gotenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/vendor/github.com/subosito/gotenv/README.md -------------------------------------------------------------------------------- /forego/vendor/github.com/subosito/gotenv/gotenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/vendor/github.com/subosito/gotenv/gotenv.go -------------------------------------------------------------------------------- /forego/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/version.go -------------------------------------------------------------------------------- /forego/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/version_test.go -------------------------------------------------------------------------------- /forego/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/forego/windows.go -------------------------------------------------------------------------------- /freedos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/freedos/Dockerfile -------------------------------------------------------------------------------- /freedos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/freedos/README.md -------------------------------------------------------------------------------- /freedos/run_qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/freedos/run_qemu -------------------------------------------------------------------------------- /gitlab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/gitlab/Dockerfile -------------------------------------------------------------------------------- /gitlab/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/gitlab/RELEASE -------------------------------------------------------------------------------- /gitlab/assets/gitlab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/gitlab/assets/gitlab.rb -------------------------------------------------------------------------------- /gitlab/assets/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/gitlab/assets/setup -------------------------------------------------------------------------------- /gitlab/assets/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/gitlab/assets/sshd_config -------------------------------------------------------------------------------- /gitlab/assets/update-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/gitlab/assets/update-permissions -------------------------------------------------------------------------------- /gitlab/assets/wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/gitlab/assets/wrapper -------------------------------------------------------------------------------- /golang/1.7/alpine-build/17847.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.7/alpine-build/17847.patch -------------------------------------------------------------------------------- /golang/1.7/alpine-build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.7/alpine-build/Dockerfile -------------------------------------------------------------------------------- /golang/1.7/alpine-build/go-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.7/alpine-build/go-wrapper -------------------------------------------------------------------------------- /golang/1.7/alpine-build/no-pic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.7/alpine-build/no-pic.patch -------------------------------------------------------------------------------- /golang/1.7/alpine/17847.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.7/alpine/17847.patch -------------------------------------------------------------------------------- /golang/1.7/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.7/alpine/Dockerfile -------------------------------------------------------------------------------- /golang/1.7/alpine/go-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.7/alpine/go-wrapper -------------------------------------------------------------------------------- /golang/1.7/alpine/make-pi.sh.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.7/alpine/make-pi.sh.template -------------------------------------------------------------------------------- /golang/1.7/alpine/no-pic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.7/alpine/no-pic.patch -------------------------------------------------------------------------------- /golang/1.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.8/Dockerfile -------------------------------------------------------------------------------- /golang/1.8/go-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/golang/1.8/go-wrapper -------------------------------------------------------------------------------- /gotty/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/gotty/Dockerfile -------------------------------------------------------------------------------- /gotty/Dockerfile.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/gotty/Dockerfile.armhf -------------------------------------------------------------------------------- /h5ai/amd64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/h5ai/amd64/Dockerfile -------------------------------------------------------------------------------- /h5ai/amd64/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/h5ai/amd64/entrypoint.sh -------------------------------------------------------------------------------- /h5ai/amd64/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/h5ai/amd64/router.php -------------------------------------------------------------------------------- /h5ai/armhf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/h5ai/armhf/Dockerfile -------------------------------------------------------------------------------- /h5ai/armhf/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/h5ai/armhf/entrypoint.sh -------------------------------------------------------------------------------- /h5ai/armhf/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/h5ai/armhf/router.php -------------------------------------------------------------------------------- /h5ai/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/h5ai/docker-compose.yml -------------------------------------------------------------------------------- /jenkinsci/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/CONTRIBUTING.md -------------------------------------------------------------------------------- /jenkinsci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/Dockerfile -------------------------------------------------------------------------------- /jenkinsci/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/Jenkinsfile -------------------------------------------------------------------------------- /jenkinsci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/README.md -------------------------------------------------------------------------------- /jenkinsci/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/docker-compose.yml -------------------------------------------------------------------------------- /jenkinsci/init.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/init.groovy -------------------------------------------------------------------------------- /jenkinsci/install-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/install-plugins.sh -------------------------------------------------------------------------------- /jenkinsci/jenkins-support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/jenkins-support -------------------------------------------------------------------------------- /jenkinsci/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/jenkins.sh -------------------------------------------------------------------------------- /jenkinsci/plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/plugins.sh -------------------------------------------------------------------------------- /jenkinsci/tests/functions.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/tests/functions.bats -------------------------------------------------------------------------------- /jenkinsci/tests/install-plugins.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/tests/install-plugins.bats -------------------------------------------------------------------------------- /jenkinsci/tests/install-plugins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/tests/install-plugins/Dockerfile -------------------------------------------------------------------------------- /jenkinsci/tests/install-plugins/update/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/tests/install-plugins/update/Dockerfile -------------------------------------------------------------------------------- /jenkinsci/tests/plugins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/tests/plugins/Dockerfile -------------------------------------------------------------------------------- /jenkinsci/tests/plugins/plugins.txt: -------------------------------------------------------------------------------- 1 | maven-plugin:2.7.1 2 | ant:1.3 3 | -------------------------------------------------------------------------------- /jenkinsci/tests/runtime.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/tests/runtime.bats -------------------------------------------------------------------------------- /jenkinsci/tests/test_helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/tests/test_helpers.bash -------------------------------------------------------------------------------- /jenkinsci/tests/upgrade-plugins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/tests/upgrade-plugins/Dockerfile -------------------------------------------------------------------------------- /jenkinsci/update-official-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/update-official-library.sh -------------------------------------------------------------------------------- /jenkinsci/weekly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/jenkinsci/weekly.sh -------------------------------------------------------------------------------- /kk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/kk/Dockerfile -------------------------------------------------------------------------------- /kodexplorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/kodexplorer/README.md -------------------------------------------------------------------------------- /kodexplorer/amd64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/kodexplorer/amd64/Dockerfile -------------------------------------------------------------------------------- /kodexplorer/amd64/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/kodexplorer/amd64/entrypoint.sh -------------------------------------------------------------------------------- /kodexplorer/armhf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/kodexplorer/armhf/Dockerfile -------------------------------------------------------------------------------- /kodexplorer/armhf/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/kodexplorer/armhf/entrypoint.sh -------------------------------------------------------------------------------- /kodexplorer/php/amd64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/kodexplorer/php/amd64/Dockerfile -------------------------------------------------------------------------------- /kodexplorer/php/amd64/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/kodexplorer/php/amd64/entrypoint.sh -------------------------------------------------------------------------------- /kodexplorer/php/armhf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/kodexplorer/php/armhf/Dockerfile -------------------------------------------------------------------------------- /kodexplorer/php/armhf/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/kodexplorer/php/armhf/entrypoint.sh -------------------------------------------------------------------------------- /leanote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/leanote/Dockerfile -------------------------------------------------------------------------------- /leanote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/leanote/README.md -------------------------------------------------------------------------------- /leanote/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/leanote/app.conf -------------------------------------------------------------------------------- /leanote/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/leanote/docker-compose.yml -------------------------------------------------------------------------------- /leanote/get-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/leanote/get-data.sh -------------------------------------------------------------------------------- /leanote/initdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/leanote/initdb.sh -------------------------------------------------------------------------------- /libguestfs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/libguestfs/Dockerfile -------------------------------------------------------------------------------- /mariadb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/mariadb/Dockerfile -------------------------------------------------------------------------------- /mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/mariadb/README.md -------------------------------------------------------------------------------- /mariadb/files/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/mariadb/files/run.sh -------------------------------------------------------------------------------- /markdown-to-slides/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markdown-to-slides/Dockerfile -------------------------------------------------------------------------------- /markdown-to-slides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markdown-to-slides/README.md -------------------------------------------------------------------------------- /markdown-to-slides/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markdown-to-slides/docker-compose.yml -------------------------------------------------------------------------------- /markdown-to-slides/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markdown-to-slides/docker-entrypoint.sh -------------------------------------------------------------------------------- /markdown-to-slides/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markdown-to-slides/example.md -------------------------------------------------------------------------------- /markdown-to-slides/index.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markdown-to-slides/index.html.tmpl -------------------------------------------------------------------------------- /markdown-to-slides/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markdown-to-slides/slides.md -------------------------------------------------------------------------------- /markdown-to-slides/styles.css: -------------------------------------------------------------------------------- 1 | # No-op CSS file that allows for styling overrides 2 | -------------------------------------------------------------------------------- /markline/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markline/Dockerfile -------------------------------------------------------------------------------- /markline/data/life.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markline/data/life.md -------------------------------------------------------------------------------- /markline/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markline/docker-compose.yml -------------------------------------------------------------------------------- /markline/life.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markline/life.md -------------------------------------------------------------------------------- /markline/with_letsencrypt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markline/with_letsencrypt/Dockerfile -------------------------------------------------------------------------------- /markline/with_letsencrypt/data/life.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markline/with_letsencrypt/data/life.md -------------------------------------------------------------------------------- /markline/with_letsencrypt/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markline/with_letsencrypt/docker-compose.yml -------------------------------------------------------------------------------- /markline/with_letsencrypt/life.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/markline/with_letsencrypt/life.md -------------------------------------------------------------------------------- /mongo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/mongo/Dockerfile -------------------------------------------------------------------------------- /mongo/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/mongo/docker-entrypoint.sh -------------------------------------------------------------------------------- /mysql/5.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/mysql/5.7/Dockerfile -------------------------------------------------------------------------------- /mysql/5.7/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/mysql/5.7/docker-entrypoint.sh -------------------------------------------------------------------------------- /nextcloud/11.0/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nextcloud/11.0/apache/Dockerfile -------------------------------------------------------------------------------- /nextcloud/11.0/apache/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nextcloud/11.0/apache/docker-entrypoint.sh -------------------------------------------------------------------------------- /nfs-server/v3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nfs-server/v3/Dockerfile -------------------------------------------------------------------------------- /nfs-server/v3/Dockerfile.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nfs-server/v3/Dockerfile.armhf -------------------------------------------------------------------------------- /nfs-server/v3/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nfs-server/v3/entrypoint.sh -------------------------------------------------------------------------------- /nginx-proxy/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .dockerignore 3 | circle.yml 4 | Makefile 5 | README.md 6 | test 7 | -------------------------------------------------------------------------------- /nginx-proxy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/.travis.yml -------------------------------------------------------------------------------- /nginx-proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/Dockerfile -------------------------------------------------------------------------------- /nginx-proxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/LICENSE -------------------------------------------------------------------------------- /nginx-proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/Makefile -------------------------------------------------------------------------------- /nginx-proxy/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/Procfile -------------------------------------------------------------------------------- /nginx-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/README.md -------------------------------------------------------------------------------- /nginx-proxy/docker-compose-separate-containers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/docker-compose-separate-containers.yml -------------------------------------------------------------------------------- /nginx-proxy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/docker-compose.yml -------------------------------------------------------------------------------- /nginx-proxy/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/docker-entrypoint.sh -------------------------------------------------------------------------------- /nginx-proxy/nginx.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/nginx.tmpl -------------------------------------------------------------------------------- /nginx-proxy/rpi-yml-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/rpi-yml-template/README.md -------------------------------------------------------------------------------- /nginx-proxy/rpi-yml-template/aria2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/rpi-yml-template/aria2/Dockerfile -------------------------------------------------------------------------------- /nginx-proxy/rpi-yml-template/aria2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/rpi-yml-template/aria2/docker-compose.yml -------------------------------------------------------------------------------- /nginx-proxy/rpi-yml-template/btsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/rpi-yml-template/btsync/README.md -------------------------------------------------------------------------------- /nginx-proxy/rpi-yml-template/btsync/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/rpi-yml-template/btsync/docker-compose.yml -------------------------------------------------------------------------------- /nginx-proxy/rpi-yml-template/docker-compose.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/rpi-yml-template/docker-compose.template -------------------------------------------------------------------------------- /nginx-proxy/rpi-yml-template/gogs/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/rpi-yml-template/gogs/docker-compose.yml -------------------------------------------------------------------------------- /nginx-proxy/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/README.md -------------------------------------------------------------------------------- /nginx-proxy/test/default-host.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/default-host.bats -------------------------------------------------------------------------------- /nginx-proxy/test/docker.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/docker.bats -------------------------------------------------------------------------------- /nginx-proxy/test/headers.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/headers.bats -------------------------------------------------------------------------------- /nginx-proxy/test/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/lib/README.md -------------------------------------------------------------------------------- /nginx-proxy/test/lib/bats/batslib.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/lib/bats/batslib.bash -------------------------------------------------------------------------------- /nginx-proxy/test/lib/bats/batslib/output.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/lib/bats/batslib/output.bash -------------------------------------------------------------------------------- /nginx-proxy/test/lib/docker_helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/lib/docker_helpers.bash -------------------------------------------------------------------------------- /nginx-proxy/test/lib/helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/lib/helpers.bash -------------------------------------------------------------------------------- /nginx-proxy/test/lib/ssl/nginx-proxy.bats.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/lib/ssl/nginx-proxy.bats.crt -------------------------------------------------------------------------------- /nginx-proxy/test/lib/ssl/nginx-proxy.bats.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/lib/ssl/nginx-proxy.bats.key -------------------------------------------------------------------------------- /nginx-proxy/test/multiple-hosts.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/multiple-hosts.bats -------------------------------------------------------------------------------- /nginx-proxy/test/multiple-ports.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/multiple-ports.bats -------------------------------------------------------------------------------- /nginx-proxy/test/ssl.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/ssl.bats -------------------------------------------------------------------------------- /nginx-proxy/test/test_helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/test_helpers.bash -------------------------------------------------------------------------------- /nginx-proxy/test/web_helpers/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/web_helpers/webserver.py -------------------------------------------------------------------------------- /nginx-proxy/test/wildcard-hosts.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx-proxy/test/wildcard-hosts.bats -------------------------------------------------------------------------------- /nginx/mainline/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx/mainline/alpine/Dockerfile -------------------------------------------------------------------------------- /nginx/mainline/alpine/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx/mainline/alpine/nginx.conf -------------------------------------------------------------------------------- /nginx/mainline/alpine/nginx.vh.default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/nginx/mainline/alpine/nginx.vh.default.conf -------------------------------------------------------------------------------- /node/4.7/alpine-onbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/node/4.7/alpine-onbuild/Dockerfile -------------------------------------------------------------------------------- /node/4.7/alpine-onbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/node/4.7/alpine-onbuild/README.md -------------------------------------------------------------------------------- /node/4.7/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/node/4.7/alpine/Dockerfile -------------------------------------------------------------------------------- /node/4.7/alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/node/4.7/alpine/README.md -------------------------------------------------------------------------------- /node/6.9/alpine-onbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/node/6.9/alpine-onbuild/Dockerfile -------------------------------------------------------------------------------- /node/6.9/alpine-onbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/node/6.9/alpine-onbuild/README.md -------------------------------------------------------------------------------- /node/6.9/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/node/6.9/alpine/Dockerfile -------------------------------------------------------------------------------- /node/6.9/alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/node/6.9/alpine/README.md -------------------------------------------------------------------------------- /openjdk/8-jdk/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/openjdk/8-jdk/alpine/Dockerfile -------------------------------------------------------------------------------- /openjdk/8-jdk/alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/openjdk/8-jdk/alpine/README.md -------------------------------------------------------------------------------- /owncloud/9.1/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/owncloud/9.1/apache/Dockerfile -------------------------------------------------------------------------------- /owncloud/9.1/apache/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/owncloud/9.1/apache/docker-entrypoint.sh -------------------------------------------------------------------------------- /php/5.6/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/5.6/apache/Dockerfile -------------------------------------------------------------------------------- /php/5.6/apache/apache2-foreground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/5.6/apache/apache2-foreground -------------------------------------------------------------------------------- /php/5.6/apache/docker-php-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/5.6/apache/docker-php-entrypoint -------------------------------------------------------------------------------- /php/5.6/apache/docker-php-ext-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/5.6/apache/docker-php-ext-configure -------------------------------------------------------------------------------- /php/5.6/apache/docker-php-ext-enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/5.6/apache/docker-php-ext-enable -------------------------------------------------------------------------------- /php/5.6/apache/docker-php-ext-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/5.6/apache/docker-php-ext-install -------------------------------------------------------------------------------- /php/5.6/apache/docker-php-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/5.6/apache/docker-php-source -------------------------------------------------------------------------------- /php/7.1/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/alpine/Dockerfile -------------------------------------------------------------------------------- /php/7.1/alpine/docker-php-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/alpine/docker-php-entrypoint -------------------------------------------------------------------------------- /php/7.1/alpine/docker-php-ext-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/alpine/docker-php-ext-configure -------------------------------------------------------------------------------- /php/7.1/alpine/docker-php-ext-enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/alpine/docker-php-ext-enable -------------------------------------------------------------------------------- /php/7.1/alpine/docker-php-ext-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/alpine/docker-php-ext-install -------------------------------------------------------------------------------- /php/7.1/alpine/docker-php-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/alpine/docker-php-source -------------------------------------------------------------------------------- /php/7.1/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/apache/Dockerfile -------------------------------------------------------------------------------- /php/7.1/apache/apache2-foreground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/apache/apache2-foreground -------------------------------------------------------------------------------- /php/7.1/apache/docker-php-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/apache/docker-php-entrypoint -------------------------------------------------------------------------------- /php/7.1/apache/docker-php-ext-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/apache/docker-php-ext-configure -------------------------------------------------------------------------------- /php/7.1/apache/docker-php-ext-enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/apache/docker-php-ext-enable -------------------------------------------------------------------------------- /php/7.1/apache/docker-php-ext-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/apache/docker-php-ext-install -------------------------------------------------------------------------------- /php/7.1/apache/docker-php-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/apache/docker-php-source -------------------------------------------------------------------------------- /php/7.1/fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/Dockerfile -------------------------------------------------------------------------------- /php/7.1/fpm/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/alpine/Dockerfile -------------------------------------------------------------------------------- /php/7.1/fpm/alpine/docker-php-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/alpine/docker-php-entrypoint -------------------------------------------------------------------------------- /php/7.1/fpm/alpine/docker-php-ext-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/alpine/docker-php-ext-configure -------------------------------------------------------------------------------- /php/7.1/fpm/alpine/docker-php-ext-enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/alpine/docker-php-ext-enable -------------------------------------------------------------------------------- /php/7.1/fpm/alpine/docker-php-ext-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/alpine/docker-php-ext-install -------------------------------------------------------------------------------- /php/7.1/fpm/alpine/docker-php-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/alpine/docker-php-source -------------------------------------------------------------------------------- /php/7.1/fpm/alpine/gd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/alpine/gd/Dockerfile -------------------------------------------------------------------------------- /php/7.1/fpm/docker-php-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/docker-php-entrypoint -------------------------------------------------------------------------------- /php/7.1/fpm/docker-php-ext-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/docker-php-ext-configure -------------------------------------------------------------------------------- /php/7.1/fpm/docker-php-ext-enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/docker-php-ext-enable -------------------------------------------------------------------------------- /php/7.1/fpm/docker-php-ext-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/docker-php-ext-install -------------------------------------------------------------------------------- /php/7.1/fpm/docker-php-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/php/7.1/fpm/docker-php-source -------------------------------------------------------------------------------- /postgres/9.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/postgres/9.4/Dockerfile -------------------------------------------------------------------------------- /postgres/9.4/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/postgres/9.4/alpine/Dockerfile -------------------------------------------------------------------------------- /postgres/9.4/alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/postgres/9.4/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /postgres/9.4/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/postgres/9.4/docker-entrypoint.sh -------------------------------------------------------------------------------- /postgres/9.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/postgres/9.6/Dockerfile -------------------------------------------------------------------------------- /postgres/9.6/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/postgres/9.6/alpine/Dockerfile -------------------------------------------------------------------------------- /postgres/9.6/alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/postgres/9.6/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /postgres/9.6/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/postgres/9.6/docker-entrypoint.sh -------------------------------------------------------------------------------- /privatebin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/Dockerfile -------------------------------------------------------------------------------- /privatebin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/LICENSE -------------------------------------------------------------------------------- /privatebin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/README.md -------------------------------------------------------------------------------- /privatebin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/build.sh -------------------------------------------------------------------------------- /privatebin/buildNoCache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/buildNoCache.sh -------------------------------------------------------------------------------- /privatebin/cfg/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/cfg/.htaccess -------------------------------------------------------------------------------- /privatebin/cfg/conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/cfg/conf.ini -------------------------------------------------------------------------------- /privatebin/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/docker-compose.yml -------------------------------------------------------------------------------- /privatebin/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/entrypoint.sh -------------------------------------------------------------------------------- /privatebin/files/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/files/nginx.conf -------------------------------------------------------------------------------- /privatebin/files/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/files/php-fpm.conf -------------------------------------------------------------------------------- /privatebin/files/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/privatebin/files/supervisord.conf -------------------------------------------------------------------------------- /pugo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/LICENSE -------------------------------------------------------------------------------- /pugo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/README.md -------------------------------------------------------------------------------- /pugo/app/asset/asset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/asset/asset.go -------------------------------------------------------------------------------- /pugo/app/cmd/asset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/cmd/asset.go -------------------------------------------------------------------------------- /pugo/app/cmd/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/cmd/build.go -------------------------------------------------------------------------------- /pugo/app/cmd/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/cmd/flags.go -------------------------------------------------------------------------------- /pugo/app/cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/cmd/init.go -------------------------------------------------------------------------------- /pugo/app/cmd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/cmd/server.go -------------------------------------------------------------------------------- /pugo/app/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/cmd/version.go -------------------------------------------------------------------------------- /pugo/app/compile/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/compile/compile.go -------------------------------------------------------------------------------- /pugo/app/compile/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/compile/context.go -------------------------------------------------------------------------------- /pugo/app/compile/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/compile/copy.go -------------------------------------------------------------------------------- /pugo/app/compile/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/compile/read.go -------------------------------------------------------------------------------- /pugo/app/helper/gravatar/gravatar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/gravatar/gravatar.go -------------------------------------------------------------------------------- /pugo/app/helper/gravatar/gravatar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/gravatar/gravatar_test.go -------------------------------------------------------------------------------- /pugo/app/helper/i18n/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/i18n/group.go -------------------------------------------------------------------------------- /pugo/app/helper/i18n/i18n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/i18n/i18n.go -------------------------------------------------------------------------------- /pugo/app/helper/i18n/i18n_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/i18n/i18n_test.go -------------------------------------------------------------------------------- /pugo/app/helper/i18n/i18n_test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/i18n/i18n_test.toml -------------------------------------------------------------------------------- /pugo/app/helper/markdown/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/markdown/markdown.go -------------------------------------------------------------------------------- /pugo/app/helper/markdown/markdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/markdown/markdown_test.go -------------------------------------------------------------------------------- /pugo/app/helper/markdown/markdown_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/markdown/markdown_test.html -------------------------------------------------------------------------------- /pugo/app/helper/markdown/markdown_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/markdown/markdown_test.md -------------------------------------------------------------------------------- /pugo/app/helper/pager/pager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/pager/pager.go -------------------------------------------------------------------------------- /pugo/app/helper/pager/pager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/pager/pager_test.go -------------------------------------------------------------------------------- /pugo/app/helper/printer/logf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/printer/logf.go -------------------------------------------------------------------------------- /pugo/app/helper/printer/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/printer/printer.go -------------------------------------------------------------------------------- /pugo/app/helper/watcher/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/watcher/watcher.go -------------------------------------------------------------------------------- /pugo/app/helper/watcher/watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/watcher/watcher_test.go -------------------------------------------------------------------------------- /pugo/app/helper/ziper/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/ziper/gzip.go -------------------------------------------------------------------------------- /pugo/app/helper/ziper/gzip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/ziper/gzip_test.go -------------------------------------------------------------------------------- /pugo/app/helper/ziper/gzip_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/helper/ziper/gzip_test.txt -------------------------------------------------------------------------------- /pugo/app/model/author/author.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/author/author.go -------------------------------------------------------------------------------- /pugo/app/model/author/author_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/author/author_test.go -------------------------------------------------------------------------------- /pugo/app/model/base/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/base/base.go -------------------------------------------------------------------------------- /pugo/app/model/base/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/base/meta.go -------------------------------------------------------------------------------- /pugo/app/model/base/meta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/base/meta_test.go -------------------------------------------------------------------------------- /pugo/app/model/base/nav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/base/nav.go -------------------------------------------------------------------------------- /pugo/app/model/base/nav_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/base/nav_test.go -------------------------------------------------------------------------------- /pugo/app/model/index/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/index/index.go -------------------------------------------------------------------------------- /pugo/app/model/index/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/index/index_test.go -------------------------------------------------------------------------------- /pugo/app/model/index/index_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/index/index_test.html -------------------------------------------------------------------------------- /pugo/app/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/model.go -------------------------------------------------------------------------------- /pugo/app/model/node/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/node/nodes.go -------------------------------------------------------------------------------- /pugo/app/model/node/nodes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/node/nodes_test.go -------------------------------------------------------------------------------- /pugo/app/model/page/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/page/json.go -------------------------------------------------------------------------------- /pugo/app/model/page/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/page/json_test.go -------------------------------------------------------------------------------- /pugo/app/model/page/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/page/page.go -------------------------------------------------------------------------------- /pugo/app/model/page/page_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/page/page_test.go -------------------------------------------------------------------------------- /pugo/app/model/page/pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/page/pages.go -------------------------------------------------------------------------------- /pugo/app/model/page/testdata/no_createtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/page/testdata/no_createtime.md -------------------------------------------------------------------------------- /pugo/app/model/page/testdata/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/page/testdata/page.md -------------------------------------------------------------------------------- /pugo/app/model/page/testdata/unknown_meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/page/testdata/unknown_meta.md -------------------------------------------------------------------------------- /pugo/app/model/post/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/post/archive.go -------------------------------------------------------------------------------- /pugo/app/model/post/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/post/post.go -------------------------------------------------------------------------------- /pugo/app/model/post/posts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/post/posts.go -------------------------------------------------------------------------------- /pugo/app/model/post/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/post/tag.go -------------------------------------------------------------------------------- /pugo/app/model/theme/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/theme/meta.go -------------------------------------------------------------------------------- /pugo/app/model/theme/theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/theme/theme.go -------------------------------------------------------------------------------- /pugo/app/model/third/analytics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/third/analytics.go -------------------------------------------------------------------------------- /pugo/app/model/third/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/model/third/comment.go -------------------------------------------------------------------------------- /pugo/app/vars/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/app/vars/vars.go -------------------------------------------------------------------------------- /pugo/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/codecov.yml -------------------------------------------------------------------------------- /pugo/coverage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/coverage.txt -------------------------------------------------------------------------------- /pugo/dest/2017/1/1/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/2017/1/1/welcome.html -------------------------------------------------------------------------------- /pugo/dest/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/about.html -------------------------------------------------------------------------------- /pugo/dest/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/archive.html -------------------------------------------------------------------------------- /pugo/dest/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/css/bootstrap.min.css -------------------------------------------------------------------------------- /pugo/dest/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/css/prism.css -------------------------------------------------------------------------------- /pugo/dest/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/css/style.css -------------------------------------------------------------------------------- /pugo/dest/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/favicon.ico -------------------------------------------------------------------------------- /pugo/dest/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/feed.xml -------------------------------------------------------------------------------- /pugo/dest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/index.html -------------------------------------------------------------------------------- /pugo/dest/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/js/bootstrap.min.js -------------------------------------------------------------------------------- /pugo/dest/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /pugo/dest/js/prism.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/js/prism.min.js -------------------------------------------------------------------------------- /pugo/dest/media/golang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/media/golang.png -------------------------------------------------------------------------------- /pugo/dest/posts/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/posts/1.html -------------------------------------------------------------------------------- /pugo/dest/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /static -------------------------------------------------------------------------------- /pugo/dest/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/sitemap.xml -------------------------------------------------------------------------------- /pugo/dest/tags/pugo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/dest/tags/pugo.html -------------------------------------------------------------------------------- /pugo/lang/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/lang/en.toml -------------------------------------------------------------------------------- /pugo/lang/i18n.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/lang/i18n.toml -------------------------------------------------------------------------------- /pugo/lang/zh-cn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/lang/zh-cn.toml -------------------------------------------------------------------------------- /pugo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/main.go -------------------------------------------------------------------------------- /pugo/make-pi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/make-pi.sh -------------------------------------------------------------------------------- /pugo/media/golang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/media/golang.png -------------------------------------------------------------------------------- /pugo/meta.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/meta.toml -------------------------------------------------------------------------------- /pugo/page/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/page/about.md -------------------------------------------------------------------------------- /pugo/post/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/post/welcome.md -------------------------------------------------------------------------------- /pugo/pugo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/pugo -------------------------------------------------------------------------------- /pugo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/readme.md -------------------------------------------------------------------------------- /pugo/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/test.sh -------------------------------------------------------------------------------- /pugo/theme/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/archive.html -------------------------------------------------------------------------------- /pugo/theme/embed/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/embed/analytics.html -------------------------------------------------------------------------------- /pugo/theme/embed/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/embed/comment.html -------------------------------------------------------------------------------- /pugo/theme/embed/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/embed/footer.html -------------------------------------------------------------------------------- /pugo/theme/embed/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/embed/header.html -------------------------------------------------------------------------------- /pugo/theme/embed/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/embed/meta.html -------------------------------------------------------------------------------- /pugo/theme/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/page.html -------------------------------------------------------------------------------- /pugo/theme/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/post.html -------------------------------------------------------------------------------- /pugo/theme/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/posts.html -------------------------------------------------------------------------------- /pugo/theme/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /pugo/theme/static/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/static/css/prism.css -------------------------------------------------------------------------------- /pugo/theme/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/static/css/style.css -------------------------------------------------------------------------------- /pugo/theme/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/static/favicon.ico -------------------------------------------------------------------------------- /pugo/theme/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /pugo/theme/static/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/static/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /pugo/theme/static/js/prism.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/static/js/prism.min.js -------------------------------------------------------------------------------- /pugo/theme/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /static -------------------------------------------------------------------------------- /pugo/theme/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/theme/theme.toml -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/COMPATIBLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/COMPATIBLE -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/Makefile -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/README.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/decode.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/decode_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/decode_meta.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/encode.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/encoding_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/encoding_types.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/parse.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/type_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/type_check.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/BurntSushi/toml/type_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/BurntSushi/toml/type_fields.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/README.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/cmd.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/convert.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/dir.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/file.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/html.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/http.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/math.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/path.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/regex.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/slice.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/string.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/time.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/Unknwon/com/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/Unknwon/com/url.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/gorilla/feeds/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/gorilla/feeds/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/github.com/gorilla/feeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/gorilla/feeds/README.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/gorilla/feeds/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/gorilla/feeds/atom.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/gorilla/feeds/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/gorilla/feeds/doc.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/gorilla/feeds/feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/gorilla/feeds/feed.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/gorilla/feeds/rss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/gorilla/feeds/rss.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/gorilla/feeds/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/gorilla/feeds/uuid.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/jtolds/gls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/jtolds/gls/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/github.com/jtolds/gls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/jtolds/gls/README.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/jtolds/gls/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/jtolds/gls/context.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/jtolds/gls/gen_sym.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/jtolds/gls/gen_sym.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/jtolds/gls/gid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/jtolds/gls/gid.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/jtolds/gls/id_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/jtolds/gls/id_pool.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/jtolds/gls/stack_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/jtolds/gls/stack_tags.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/jtolds/gls/stack_tags_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/jtolds/gls/stack_tags_js.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/jtolds/gls/stack_tags_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/jtolds/gls/stack_tags_main.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mattn/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mattn/go-colorable/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mattn/go-isatty/isatty_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mattn/go-isatty/isatty_bsd.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mattn/go-isatty/isatty_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mattn/go-isatty/isatty_linux.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mattn/go-isatty/isatty_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mattn/go-isatty/isatty_others.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mattn/go-isatty/isatty_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mattn/go-isatty/isatty_solaris.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mattn/go-isatty/isatty_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mattn/go-isatty/isatty_windows.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mcuadros/go-version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mcuadros/go-version/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/github.com/mcuadros/go-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mcuadros/go-version/README.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/mcuadros/go-version/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mcuadros/go-version/compare.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mcuadros/go-version/constraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mcuadros/go-version/constraint.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mcuadros/go-version/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mcuadros/go-version/doc.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mcuadros/go-version/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mcuadros/go-version/group.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mcuadros/go-version/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mcuadros/go-version/normalize.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mcuadros/go-version/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mcuadros/go-version/sort.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/mcuadros/go-version/stability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/mcuadros/go-version/stability.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/russross/blackfriday/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/russross/blackfriday/LICENSE.txt -------------------------------------------------------------------------------- /pugo/vendor/github.com/russross/blackfriday/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/russross/blackfriday/README.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/russross/blackfriday/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/russross/blackfriday/block.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/russross/blackfriday/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/russross/blackfriday/html.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/russross/blackfriday/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/russross/blackfriday/inline.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/russross/blackfriday/latex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/russross/blackfriday/latex.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/russross/blackfriday/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/russross/blackfriday/markdown.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/smartystreets/assertions/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/smartystreets/assertions/doc.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/smartystreets/assertions/panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/smartystreets/assertions/panic.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/smartystreets/assertions/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/smartystreets/assertions/time.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/smartystreets/assertions/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/smartystreets/assertions/type.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/smartystreets/goconvey/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/smartystreets/goconvey/LICENSE.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/smartystreets/goconvey/convey/reporting/reporting.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /pugo/vendor/github.com/tidwall/gjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/tidwall/gjson/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/github.com/tidwall/gjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/tidwall/gjson/README.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/tidwall/gjson/gjson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/tidwall/gjson/gjson.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/tidwall/gjson/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/tidwall/gjson/logo.png -------------------------------------------------------------------------------- /pugo/vendor/github.com/tidwall/match/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/tidwall/match/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/github.com/tidwall/match/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/tidwall/match/README.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/tidwall/match/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/tidwall/match/match.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/CHANGELOG.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/README.md -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/app.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/appveyor.yml -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/category.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/cli.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/command.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/context.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/errors.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/flag-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/flag-types.json -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/flag.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/flag_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/flag_generated.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/funcs.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/generate-flag-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/generate-flag-types -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/help.go -------------------------------------------------------------------------------- /pugo/vendor/github.com/urfave/cli/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/github.com/urfave/cli/runtests -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mksysnum_linux.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mksysnum_linux.pl -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/types_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/types_linux.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /pugo/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/AUTHORS -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/CHANGELOG.md -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/CONTRIBUTING.md -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/LICENSE -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/README.md -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/fen.go -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/fsnotify.go -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/inotify.go -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/inotify_poller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/inotify_poller.go -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/kqueue.go -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/open_mode_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/open_mode_bsd.go -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/open_mode_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/open_mode_darwin.go -------------------------------------------------------------------------------- /pugo/vendor/gopkg.in/fsnotify.v1/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/gopkg.in/fsnotify.v1/windows.go -------------------------------------------------------------------------------- /pugo/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/pugo/vendor/vendor.json -------------------------------------------------------------------------------- /raspbian-novnc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/raspbian-novnc/Dockerfile -------------------------------------------------------------------------------- /raspbian-novnc/Dockerfile.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/raspbian-novnc/Dockerfile.armhf -------------------------------------------------------------------------------- /raspbian-novnc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/raspbian-novnc/README.md -------------------------------------------------------------------------------- /raspbian-novnc/keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/raspbian-novnc/keyboard -------------------------------------------------------------------------------- /raspbian-novnc/run_novnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/raspbian-novnc/run_novnc -------------------------------------------------------------------------------- /raspbian-novnc/stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/raspbian-novnc/stack.yml -------------------------------------------------------------------------------- /raspbian-vnc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/raspbian-vnc/Dockerfile -------------------------------------------------------------------------------- /raspbian-vnc/Dockerfile.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/raspbian-vnc/Dockerfile.armhf -------------------------------------------------------------------------------- /raspbian-vnc/keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/raspbian-vnc/keyboard -------------------------------------------------------------------------------- /raspbian-vnc/run_vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/raspbian-vnc/run_vnc -------------------------------------------------------------------------------- /rpi-alpine-aria2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-aria2/Dockerfile -------------------------------------------------------------------------------- /rpi-alpine-aria2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-aria2/README.md -------------------------------------------------------------------------------- /rpi-alpine-aria2/aria2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-aria2/aria2.conf -------------------------------------------------------------------------------- /rpi-alpine-aria2/ca-certificates.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-aria2/ca-certificates.crt -------------------------------------------------------------------------------- /rpi-alpine-aria2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-aria2/docker-compose.yml -------------------------------------------------------------------------------- /rpi-alpine-grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/Dockerfile -------------------------------------------------------------------------------- /rpi-alpine-grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/README.md -------------------------------------------------------------------------------- /rpi-alpine-grafana/defaults.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/defaults.ini -------------------------------------------------------------------------------- /rpi-alpine-grafana/docker-compose.production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/docker-compose.production.yml -------------------------------------------------------------------------------- /rpi-alpine-grafana/docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/docker-compose.test.yml -------------------------------------------------------------------------------- /rpi-alpine-grafana/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/docker-compose.yml -------------------------------------------------------------------------------- /rpi-alpine-grafana/grafana.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/grafana.ini -------------------------------------------------------------------------------- /rpi-alpine-grafana/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/run.sh -------------------------------------------------------------------------------- /rpi-alpine-grafana/sample.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/sample.ini -------------------------------------------------------------------------------- /rpi-alpine-grafana/sut/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/sut/Dockerfile -------------------------------------------------------------------------------- /rpi-alpine-grafana/sut/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-grafana/sut/test.sh -------------------------------------------------------------------------------- /rpi-alpine-phantomjs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-phantomjs/Dockerfile -------------------------------------------------------------------------------- /rpi-alpine-phantomjs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-phantomjs/Makefile -------------------------------------------------------------------------------- /rpi-alpine-phantomjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-phantomjs/README.md -------------------------------------------------------------------------------- /rpi-alpine-phantomjs/build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-phantomjs/build.patch -------------------------------------------------------------------------------- /rpi-alpine-seafile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-seafile/Dockerfile -------------------------------------------------------------------------------- /rpi-alpine-seafile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-seafile/README.md -------------------------------------------------------------------------------- /rpi-alpine-seafile/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-seafile/build.sh -------------------------------------------------------------------------------- /rpi-alpine-seafile/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-seafile/docker-compose.yml -------------------------------------------------------------------------------- /rpi-alpine-seafile/docker-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-seafile/docker-run.sh -------------------------------------------------------------------------------- /rpi-alpine-seafile/seafile-server.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-seafile/seafile-server.patch -------------------------------------------------------------------------------- /rpi-alpine-speedtest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-speedtest/Dockerfile -------------------------------------------------------------------------------- /rpi-alpine-speedtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-speedtest/README.md -------------------------------------------------------------------------------- /rpi-alpine-yaaw/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-yaaw/Dockerfile -------------------------------------------------------------------------------- /rpi-alpine-yaaw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-yaaw/README.md -------------------------------------------------------------------------------- /rpi-alpine-yaaw/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine-yaaw/docker-compose.yml -------------------------------------------------------------------------------- /rpi-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine/Dockerfile -------------------------------------------------------------------------------- /rpi-alpine/sut/sut.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-alpine/sut/sut.sh -------------------------------------------------------------------------------- /rpi-resilio-sync/2.4/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.4/alpine/Dockerfile -------------------------------------------------------------------------------- /rpi-resilio-sync/2.4/alpine/run_sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.4/alpine/run_sync -------------------------------------------------------------------------------- /rpi-resilio-sync/2.4/alpine/sync.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.4/alpine/sync.conf.default -------------------------------------------------------------------------------- /rpi-resilio-sync/2.5/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.5/alpine/Dockerfile -------------------------------------------------------------------------------- /rpi-resilio-sync/2.5/alpine/run_sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.5/alpine/run_sync -------------------------------------------------------------------------------- /rpi-resilio-sync/2.5/alpine/sync.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.5/alpine/sync.conf.default -------------------------------------------------------------------------------- /rpi-resilio-sync/2.5/ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.5/ubuntu/Dockerfile -------------------------------------------------------------------------------- /rpi-resilio-sync/2.5/ubuntu/run_sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.5/ubuntu/run_sync -------------------------------------------------------------------------------- /rpi-resilio-sync/2.5/ubuntu/sync.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.5/ubuntu/sync.conf.default -------------------------------------------------------------------------------- /rpi-resilio-sync/2.5/x64/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.5/x64/alpine/Dockerfile -------------------------------------------------------------------------------- /rpi-resilio-sync/2.5/x64/alpine/run_sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.5/x64/alpine/run_sync -------------------------------------------------------------------------------- /rpi-resilio-sync/2.5/x64/alpine/sync.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/2.5/x64/alpine/sync.conf.default -------------------------------------------------------------------------------- /rpi-resilio-sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-resilio-sync/README.md -------------------------------------------------------------------------------- /rpi-webui-aria2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-webui-aria2/Dockerfile -------------------------------------------------------------------------------- /rpi-webui-aria2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-webui-aria2/README.md -------------------------------------------------------------------------------- /rpi-webui-aria2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/rpi-webui-aria2/docker-compose.yml -------------------------------------------------------------------------------- /sendclient/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/sendclient/Dockerfile -------------------------------------------------------------------------------- /tale/1.2.14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/tale/1.2.14/Dockerfile -------------------------------------------------------------------------------- /typecho/1.0/amd64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/1.0/amd64/Dockerfile -------------------------------------------------------------------------------- /typecho/1.0/amd64/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/1.0/amd64/entrypoint.sh -------------------------------------------------------------------------------- /typecho/1.0/armhf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/1.0/armhf/Dockerfile -------------------------------------------------------------------------------- /typecho/1.0/armhf/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/1.0/armhf/entrypoint.sh -------------------------------------------------------------------------------- /typecho/dev/amd64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/dev/amd64/Dockerfile -------------------------------------------------------------------------------- /typecho/dev/amd64/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/dev/amd64/entrypoint.sh -------------------------------------------------------------------------------- /typecho/dev/armhf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/dev/armhf/Dockerfile -------------------------------------------------------------------------------- /typecho/dev/armhf/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/dev/armhf/entrypoint.sh -------------------------------------------------------------------------------- /typecho/dev/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/dev/php/Dockerfile -------------------------------------------------------------------------------- /typecho/dev/php/Dockerfile.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/dev/php/Dockerfile.armhf -------------------------------------------------------------------------------- /typecho/dev/php/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/typecho/dev/php/entrypoint.sh -------------------------------------------------------------------------------- /zblog/amd64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/zblog/amd64/Dockerfile -------------------------------------------------------------------------------- /zblog/amd64/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/zblog/amd64/entrypoint.sh -------------------------------------------------------------------------------- /zblog/armhf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/zblog/armhf/Dockerfile -------------------------------------------------------------------------------- /zblog/armhf/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/zblog/armhf/entrypoint.sh -------------------------------------------------------------------------------- /zblog/php/amd64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/zblog/php/amd64/Dockerfile -------------------------------------------------------------------------------- /zblog/php/amd64/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/zblog/php/amd64/entrypoint.sh -------------------------------------------------------------------------------- /zblog/php/armhf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/zblog/php/armhf/Dockerfile -------------------------------------------------------------------------------- /zblog/php/armhf/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxuan8282/docker-image/HEAD/zblog/php/armhf/entrypoint.sh --------------------------------------------------------------------------------