├── .github └── workflows │ └── ci.yaml ├── LICENSE.md ├── README.md ├── alpine-aptly ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── etc │ ├── aptly.conf │ ├── cont-init.d │ │ └── 10-setup │ ├── fix-attrs.d │ │ └── 01-aptly │ └── services.d │ │ ├── 10-api │ │ └── run │ │ └── 50-nginx │ │ └── run │ └── usr │ └── bin │ └── aptly ├── alpine-base-3.15 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ └── cont-init.d │ └── 00-timezone ├── alpine-base-3.5 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ └── cont-init.d │ └── 00-timezone ├── alpine-base-3.8 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ └── cont-init.d │ └── 00-timezone ├── alpine-base-glibc ├── Dockerfile ├── README.md └── hooks │ └── build ├── alpine-base ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ └── cont-init.d │ └── 00-timezone ├── alpine-bigbrother-b3 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── WIP.txt │ └── etc │ └── services.d │ └── b3 │ └── run ├── alpine-build-fpm ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── usr │ └── bin │ └── fpm ├── alpine-build ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ └── sudoers.d │ └── builder ├── alpine-canto ├── Dockerfile ├── README.md └── hooks │ └── build ├── alpine-djigzo ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── app │ ├── djigzo │ │ ├── conf │ │ │ └── james │ │ │ │ └── SAR-INF │ │ │ │ ├── config.xml │ │ │ │ ├── smtp_server_config.xml │ │ │ │ └── smtp_transport_config.xml │ │ └── wrapper │ │ │ └── wrapper-additional-parameters.conf │ └── tomcat8 │ │ └── conf │ │ ├── Catalina │ │ └── localhost │ │ │ ├── ciphermail.xml │ │ │ └── web.xml │ │ ├── server.xml │ │ └── server.xml.org │ └── etc │ ├── cont-init.d │ ├── 10-mysql │ ├── 20-openssl │ └── 30-mail-callback │ └── services.d │ ├── 10-backend │ └── run │ └── 20-web │ └── run ├── alpine-fluentd ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-init.d │ └── 00-fluentd │ ├── crontabs │ └── root │ ├── fix-attrs.d │ └── 01-fluent │ ├── fluent.conf │ └── services.d │ ├── 10-fluentd │ └── run │ └── 20-crond │ └── run ├── alpine-fuglu ├── Dockerfile ├── hooks │ └── build └── resources │ └── etc │ ├── clamav │ ├── clamd.conf │ └── freshclam.conf │ ├── cont-init.d │ ├── 00-fuglu │ ├── 10-clamav │ └── 20-spamassassin │ ├── fuglu │ ├── fuglu.conf.dist │ ├── logging.conf.dist │ └── sql │ │ ├── attachmentrules.sql │ │ └── fugluconfig.sql │ └── services.d │ ├── 00_syslog │ └── run │ ├── 10_clamd │ └── run │ ├── 20_spamd │ └── run │ └── 50_fuglu │ └── run ├── alpine-go ├── Dockerfile └── hooks │ └── build ├── alpine-grimd ├── Dockerfile ├── hooks │ └── build └── resources │ └── etc │ └── services.d │ └── 10_grimd │ └── run ├── alpine-haproxy ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── app │ ├── docker-gen.cfg │ ├── haproxy.cfg.tmpl │ ├── reload-haproxy.sh │ └── update-cf-list.sh │ ├── crontabs │ └── haproxy │ ├── data │ └── ssl │ │ └── crt-list.txt │ ├── etc │ ├── cont-init.d │ │ ├── 90-haproxy │ │ └── 99-openssl │ ├── haproxy │ │ ├── haproxy.cfg │ │ └── lua │ │ │ └── acme-http01-webroot.lua │ └── services.d │ │ ├── .s6-svscan │ │ └── finish │ │ ├── 10_syslog │ │ └── run │ │ ├── 50_haproxy │ │ └── run │ │ └── 99_docker_gen │ │ └── run │ └── usr │ └── bin │ └── certbot ├── alpine-mariadb ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-init.d │ └── 00-mariadb-init │ ├── mysql │ └── my.cnf │ └── services.d │ └── mariadb │ └── run ├── alpine-matrix ├── Dockerfile ├── README.md └── hooks │ └── build ├── alpine-mozilla-syncserver ├── Dockerfile └── README.md ├── alpine-mumble ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-init.d │ └── 10-setup │ ├── fix-attrs.d │ └── 01-mumble │ ├── murmur.ini │ └── services.d │ └── 10_mumble │ └── run ├── alpine-musicbot ├── Dockerfile ├── hooks │ └── build └── resources │ └── etc │ ├── cont-init.d │ └── 10-musicbot-init │ └── services.d │ └── 10_musicbot │ └── run ├── alpine-netdata ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-init.d │ └── 10-setup │ └── services.d │ └── 10_netdata │ └── run ├── alpine-newsboat ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── etc │ ├── cont-init.d │ │ └── 10-setup │ └── fix-attrs.d │ │ └── 01-newsboat │ └── usr │ └── local │ └── bin │ └── newsboat ├── alpine-nginx-freshrss-php7 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-finish.d │ └── 99-freshrss │ ├── cont-init.d │ └── 99-freshrss │ ├── crontabs │ └── root │ └── services.d │ └── crond │ └── run ├── alpine-nginx-freshrss ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-finish.d │ └── 99-freshrss │ ├── cont-init.d │ └── 99-freshrss │ ├── crontabs │ └── root │ └── services.d │ └── crond │ └── run ├── alpine-nginx-matomo ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ └── php8 │ └── conf.d │ └── zzz-custom.ini ├── alpine-nginx-nextcloud ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── etc │ ├── cont-init.d │ │ └── 10-pre │ ├── crontabs │ │ └── www-data │ ├── fix-attrs.d │ │ └── 02-usr-bin │ ├── nginx │ │ ├── fastcgi_params │ │ └── nginx.conf │ ├── php8 │ │ └── conf.d │ │ │ └── 99_custom.ini │ └── services.d │ │ └── cron │ │ └── run │ └── usr │ └── bin │ └── occ ├── alpine-nginx-organizr ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── fix-attrs.d │ └── 01-config │ └── nginx │ └── nginx.conf ├── alpine-nginx-php5 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── data │ └── web │ │ └── index.php │ ├── etc │ ├── cont-init.d │ │ └── 10-pre │ ├── nginx │ │ ├── fastcgi_params │ │ └── nginx.conf │ ├── php5 │ │ ├── conf.d │ │ │ └── upload.ini │ │ └── php-fpm.conf │ └── services.d │ │ ├── .s6-svscan │ │ └── finish │ │ ├── nginx │ │ └── run │ │ └── php-fpm5 │ │ └── run │ └── usr │ └── bin │ └── composer ├── alpine-nginx-php7 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── data │ └── web │ │ └── index.php │ ├── etc │ ├── cont-init.d │ │ └── 10-pre │ ├── nginx │ │ ├── fastcgi_params │ │ └── nginx.conf │ ├── php7 │ │ ├── conf.d │ │ │ └── upload.ini │ │ └── php-fpm.conf │ └── services.d │ │ ├── .s6-svscan │ │ └── finish │ │ ├── nginx │ │ └── run │ │ └── php-fpm7 │ │ └── run │ └── usr │ └── bin │ └── composer ├── alpine-nginx-php8 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── data │ └── web │ │ └── index.php │ ├── etc │ ├── cont-init.d │ │ └── 10-pre │ ├── nginx │ │ ├── fastcgi_params │ │ └── nginx.conf │ ├── php8 │ │ ├── conf.d │ │ │ └── upload.ini │ │ └── php-fpm.conf │ └── services.d │ │ ├── .s6-svscan │ │ └── finish │ │ ├── nginx │ │ └── run │ │ └── php-fpm8 │ │ └── run │ └── usr │ └── bin │ └── composer ├── alpine-nginx-php82 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── data │ └── web │ │ └── index.php │ ├── etc │ ├── cont-init.d │ │ └── 10-pre │ ├── nginx │ │ ├── fastcgi_params │ │ └── nginx.conf │ ├── php82 │ │ ├── conf.d │ │ │ └── upload.ini │ │ └── php-fpm.conf │ └── services.d │ │ ├── .s6-svscan │ │ └── finish │ │ ├── nginx │ │ └── run │ │ └── php-fpm82 │ │ └── run │ └── usr │ └── bin │ └── composer ├── alpine-nginx-phpbb-php7 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── etc │ ├── cont-finish.d │ │ └── 10-phpbb │ ├── cont-init.d │ │ ├── 10-phpbb │ │ ├── 10-pre │ │ └── 99-migrate │ ├── crontabs │ │ └── root │ ├── fix-attrs.d │ │ └── 02-usr-bin │ ├── nginx │ │ └── nginx.conf │ └── services.d │ │ └── crond │ │ └── run │ └── usr │ └── bin │ └── phpbbcli ├── alpine-nginx-phpbb ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── etc │ ├── cont-finish.d │ │ └── 10-phpbb │ ├── cont-init.d │ │ ├── 10-phpbb │ │ ├── 10-pre │ │ └── 99-migrate │ ├── crontabs │ │ └── root │ ├── fix-attrs.d │ │ └── 02-usr-bin │ ├── nginx │ │ └── nginx.conf │ └── services.d │ │ └── crond │ │ └── run │ └── usr │ └── bin │ └── phpbbcli ├── alpine-nginx-rainloop-php7 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-finish.d │ └── 99-rainloop │ └── cont-init.d │ └── 99-rainloop ├── alpine-nginx-rainloop-php8 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-finish.d │ └── 99-rainloop │ └── cont-init.d │ └── 99-rainloop ├── alpine-nginx-rainloop ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-finish.d │ └── 99-rainloop │ └── cont-init.d │ └── 99-rainloop ├── alpine-nginx-shaarli-php7 ├── Dockerfile ├── README.md └── hooks │ └── build ├── alpine-nginx-shaarli ├── Dockerfile ├── README.md └── hooks │ └── build ├── alpine-nginx-snappymail-php8 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-finish.d │ └── 99-snappymail │ ├── cont-init.d │ └── 99-snappymail │ ├── nginx │ └── nginx.conf │ └── php8 │ └── conf.d │ └── gnupg.ini ├── alpine-nginx-static ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── data │ └── web │ │ └── index.html │ └── etc │ ├── cont-init.d │ └── 10-pre │ ├── nginx │ └── nginx.conf │ └── services.d │ ├── .s6-svscan │ └── finish │ └── nginx │ └── run ├── alpine-nginx-wordpress-php7 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-finish.d │ └── 99-wordpress │ └── cont-init.d │ └── 99-wordpress ├── alpine-nginx-wordpress-php8 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-finish.d │ └── 99-wordpress │ └── cont-init.d │ └── 99-wordpress ├── alpine-nginx-yourls-php7 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-init.d │ └── 10-setup │ └── nginx │ └── nginx.conf ├── alpine-nginx-yourls ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-init.d │ └── 10-setup │ └── nginx │ └── nginx.conf ├── alpine-nodejs-weecloud ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ └── services.d │ └── weecloud │ └── run ├── alpine-nodejs ├── Dockerfile ├── README.md └── hooks │ └── build ├── alpine-openfire ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-finish.d │ └── 10-persist │ ├── cont-init.d │ └── 10-setup │ └── services.d │ └── 50-openfire │ └── run ├── alpine-posty-api ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── data │ ├── DELETEME │ └── api │ │ └── app │ │ └── models │ │ └── folder.rb │ └── etc │ ├── cont-init.d │ └── 10-bundle │ └── services.d │ └── 10_posty │ └── run ├── alpine-posty-webui ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── data │ └── config │ │ └── DELETEME │ └── etc │ ├── cont-init.d │ ├── 10-authentication │ └── 20-settings │ ├── lighttpd │ ├── lighttpd-htpasswd.conf │ └── lighttpd.conf │ └── services.d │ └── 10_posty │ └── run ├── alpine-prosody ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-init.d │ ├── 10-openssl │ └── 20-setup │ ├── prosody │ └── prosody.cfg.lua │ └── services.d │ └── 50-prosody │ └── run ├── alpine-softether ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-finish.d │ ├── 00-custom-config │ └── 10-persist │ ├── cont-init.d │ ├── 00-custom-config │ └── 10-persist │ └── services.d │ └── 10-vpnserver │ └── run ├── alpine-spiderfoot ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── etc │ ├── cont-finish.d │ │ └── 10-persist │ ├── cont-init.d │ │ └── 10-persist │ ├── fix-attrs.d │ │ └── data │ └── services.d │ │ └── 10-spiderfoot │ │ └── run │ └── usr │ └── bin │ └── sfcli ├── alpine-teamspeak3 ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-init.d │ └── 10-setup │ ├── fix-attrs.d │ └── 01-teamspeak3 │ └── services.d │ ├── .s6-svscan │ └── finish │ └── 10_teamspeak3 │ └── run ├── alpine-virtualmail-fuglu ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── etc │ ├── clamav │ │ ├── clamd.conf │ │ └── freshclam.conf │ ├── cont-finish.d │ │ └── 00-custom-config │ ├── cont-init.d │ │ ├── 00-custom-config │ │ ├── 00-fuglu │ │ ├── 10-autoconf │ │ ├── 10-clamav │ │ ├── 20-prepare-ssl │ │ └── 20-spamassassin │ ├── crontabs │ │ └── vmail │ ├── dovecot │ │ ├── conf.d │ │ │ ├── 10-auth.conf │ │ │ ├── 10-director.conf │ │ │ ├── 10-logging.conf │ │ │ ├── 10-mail.conf │ │ │ ├── 10-master.conf │ │ │ ├── 10-ssl.conf │ │ │ ├── 10-tcpwrapper.conf │ │ │ ├── 15-lda.conf │ │ │ ├── 15-mailboxes.conf │ │ │ ├── 20-imap.conf │ │ │ ├── 20-lmtp.conf │ │ │ ├── 20-managesieve.conf │ │ │ ├── 20-pop3.conf │ │ │ ├── 90-acl.conf │ │ │ ├── 90-plugin.conf.dist │ │ │ ├── 90-quota.conf │ │ │ ├── 90-sieve.conf │ │ │ ├── 99-security.conf │ │ │ ├── auth-master.conf.ext │ │ │ └── auth-sql.conf.ext │ │ ├── dovecot-sql.conf.ext.dist │ │ ├── dovecot.conf │ │ ├── dovecot.pem │ │ ├── private │ │ │ └── dovecot.pem │ │ └── sieve │ │ │ ├── default.sieve │ │ │ └── global │ │ │ └── spamassassin.sieve │ ├── fix-attrs.d │ │ ├── data-clamav │ │ ├── dovecot-sieve │ │ └── usr-local-bin │ ├── fuglu │ │ ├── fuglu.conf.dist │ │ ├── logging.conf.dist │ │ ├── skipplugins.regex.dist │ │ └── sql │ │ │ ├── attachmentrules.sql │ │ │ └── fugluconfig.sql │ ├── mail │ │ └── spamassassin │ │ │ └── local.cf │ ├── postfix │ │ ├── header_checks.dist │ │ ├── main.cf │ │ ├── master.cf │ │ └── virtual │ │ │ ├── mysql-virtual-domain-aliases.cf.dist │ │ │ ├── mysql-virtual-mailbox-domains.cf.dist │ │ │ ├── mysql-virtual-mailbox-maps.cf.dist │ │ │ ├── mysql-virtual-transports.cf.dist │ │ │ └── mysql-virtual-user-aliases.cf.dist │ └── services.d │ │ ├── 05_crond │ │ └── run │ │ ├── 10_clamd │ │ └── run │ │ ├── 10_dovecot │ │ └── run │ │ ├── 20_spamd │ │ └── run │ │ ├── 50_fuglu │ │ └── run │ │ └── 60_postfix │ │ └── run │ └── usr │ └── local │ └── bin │ ├── learnSA.sh │ └── sa-learn ├── alpine-virtualmail ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ ├── etc │ ├── clamav │ │ ├── clamd.conf │ │ └── freshclam.conf │ ├── cont-finish.d │ │ ├── 00-custom-config │ │ └── 10-persist │ ├── cont-init.d │ │ ├── 00-custom-config │ │ ├── 10-autoconf │ │ ├── 20-prepare-ssl │ │ ├── 40-freshclam │ │ └── 50-presitent-storage │ ├── dovecot │ │ ├── conf.d │ │ │ ├── 10-auth.conf │ │ │ ├── 10-director.conf │ │ │ ├── 10-logging.conf │ │ │ ├── 10-mail.conf │ │ │ ├── 10-master.conf │ │ │ ├── 10-ssl.conf │ │ │ ├── 10-tcpwrapper.conf │ │ │ ├── 15-lda.conf │ │ │ ├── 15-mailboxes.conf │ │ │ ├── 20-imap.conf │ │ │ ├── 20-lmtp.conf │ │ │ ├── 20-managesieve.conf │ │ │ ├── 20-pop3.conf │ │ │ ├── 90-acl.conf │ │ │ ├── 90-plugin.conf │ │ │ ├── 90-quota.conf │ │ │ ├── 90-sieve.conf │ │ │ ├── 99-security.conf │ │ │ ├── auth-master.conf.ext │ │ │ └── auth-sql.conf.ext │ │ ├── dovecot-sql.conf.ext │ │ ├── dovecot.conf │ │ ├── dovecot.pem │ │ ├── private │ │ │ └── dovecot.pem │ │ └── sieve │ │ │ ├── default.sieve │ │ │ └── global │ │ │ └── assp.sieve │ ├── fix-attrs.d │ │ ├── data-assp │ │ ├── data-clamav │ │ └── dovecot-sieve │ ├── postfix │ │ ├── main.cf │ │ ├── master.cf │ │ └── virtual │ │ │ ├── mysql-virtual-domain-aliases.cf │ │ │ ├── mysql-virtual-mailbox-domains.cf │ │ │ ├── mysql-virtual-mailbox-maps.cf │ │ │ ├── mysql-virtual-transports.cf │ │ │ └── mysql-virtual-user-aliases.cf │ └── services.d │ │ ├── 00_syslog │ │ └── run │ │ ├── 05_crond │ │ └── run │ │ ├── 10_dovecot │ │ └── run │ │ ├── 20_postfix │ │ └── run │ │ ├── 25_clamd │ │ └── run │ │ └── 30_assp │ │ └── run │ └── usr │ └── share │ └── assp │ └── assp.cfg.defaults ├── alpine-weechat ├── Dockerfile ├── README.md ├── hooks │ └── build └── resources │ └── etc │ ├── cont-init.d │ ├── 10-persist-weechat │ └── 99-dropbear │ ├── fix-attrs.d │ └── 20-weechat-data │ ├── profile.d │ └── tmux.sh │ ├── services.d │ ├── 10-dropbear │ │ └── run │ └── 20-tor │ │ └── run │ ├── tmux.conf │ └── tor │ └── torrc ├── hooks └── build └── update_s6_overlay.sh /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/README.md -------------------------------------------------------------------------------- /alpine-aptly/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-aptly/Dockerfile -------------------------------------------------------------------------------- /alpine-aptly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-aptly/README.md -------------------------------------------------------------------------------- /alpine-aptly/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-aptly/hooks/build -------------------------------------------------------------------------------- /alpine-aptly/resources/etc/aptly.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-aptly/resources/etc/aptly.conf -------------------------------------------------------------------------------- /alpine-aptly/resources/etc/cont-init.d/10-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-aptly/resources/etc/cont-init.d/10-setup -------------------------------------------------------------------------------- /alpine-aptly/resources/etc/fix-attrs.d/01-aptly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-aptly/resources/etc/fix-attrs.d/01-aptly -------------------------------------------------------------------------------- /alpine-aptly/resources/etc/services.d/10-api/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-aptly/resources/etc/services.d/10-api/run -------------------------------------------------------------------------------- /alpine-aptly/resources/etc/services.d/50-nginx/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-aptly/resources/etc/services.d/50-nginx/run -------------------------------------------------------------------------------- /alpine-aptly/resources/usr/bin/aptly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-aptly/resources/usr/bin/aptly -------------------------------------------------------------------------------- /alpine-base-3.15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.15/Dockerfile -------------------------------------------------------------------------------- /alpine-base-3.15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.15/README.md -------------------------------------------------------------------------------- /alpine-base-3.15/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.15/hooks/build -------------------------------------------------------------------------------- /alpine-base-3.15/resources/etc/cont-init.d/00-timezone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.15/resources/etc/cont-init.d/00-timezone -------------------------------------------------------------------------------- /alpine-base-3.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.5/Dockerfile -------------------------------------------------------------------------------- /alpine-base-3.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.5/README.md -------------------------------------------------------------------------------- /alpine-base-3.5/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.5/hooks/build -------------------------------------------------------------------------------- /alpine-base-3.5/resources/etc/cont-init.d/00-timezone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.5/resources/etc/cont-init.d/00-timezone -------------------------------------------------------------------------------- /alpine-base-3.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.8/Dockerfile -------------------------------------------------------------------------------- /alpine-base-3.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.8/README.md -------------------------------------------------------------------------------- /alpine-base-3.8/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.8/hooks/build -------------------------------------------------------------------------------- /alpine-base-3.8/resources/etc/cont-init.d/00-timezone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-3.8/resources/etc/cont-init.d/00-timezone -------------------------------------------------------------------------------- /alpine-base-glibc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-glibc/Dockerfile -------------------------------------------------------------------------------- /alpine-base-glibc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-glibc/README.md -------------------------------------------------------------------------------- /alpine-base-glibc/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base-glibc/hooks/build -------------------------------------------------------------------------------- /alpine-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base/Dockerfile -------------------------------------------------------------------------------- /alpine-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base/README.md -------------------------------------------------------------------------------- /alpine-base/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base/hooks/build -------------------------------------------------------------------------------- /alpine-base/resources/etc/cont-init.d/00-timezone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-base/resources/etc/cont-init.d/00-timezone -------------------------------------------------------------------------------- /alpine-bigbrother-b3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-bigbrother-b3/Dockerfile -------------------------------------------------------------------------------- /alpine-bigbrother-b3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-bigbrother-b3/README.md -------------------------------------------------------------------------------- /alpine-bigbrother-b3/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-bigbrother-b3/hooks/build -------------------------------------------------------------------------------- /alpine-bigbrother-b3/resources/WIP.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alpine-bigbrother-b3/resources/etc/services.d/b3/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-bigbrother-b3/resources/etc/services.d/b3/run -------------------------------------------------------------------------------- /alpine-build-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-build-fpm/Dockerfile -------------------------------------------------------------------------------- /alpine-build-fpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-build-fpm/README.md -------------------------------------------------------------------------------- /alpine-build-fpm/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-build-fpm/hooks/build -------------------------------------------------------------------------------- /alpine-build-fpm/resources/usr/bin/fpm: -------------------------------------------------------------------------------- 1 | #!/command/with-contenv sh 2 | 3 | exec /app/bin/fpm "${@}" 4 | -------------------------------------------------------------------------------- /alpine-build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-build/Dockerfile -------------------------------------------------------------------------------- /alpine-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-build/README.md -------------------------------------------------------------------------------- /alpine-build/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-build/hooks/build -------------------------------------------------------------------------------- /alpine-build/resources/etc/sudoers.d/builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-build/resources/etc/sudoers.d/builder -------------------------------------------------------------------------------- /alpine-canto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-canto/Dockerfile -------------------------------------------------------------------------------- /alpine-canto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-canto/README.md -------------------------------------------------------------------------------- /alpine-canto/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-canto/hooks/build -------------------------------------------------------------------------------- /alpine-djigzo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/Dockerfile -------------------------------------------------------------------------------- /alpine-djigzo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/README.md -------------------------------------------------------------------------------- /alpine-djigzo/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/hooks/build -------------------------------------------------------------------------------- /alpine-djigzo/resources/app/djigzo/conf/james/SAR-INF/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/app/djigzo/conf/james/SAR-INF/config.xml -------------------------------------------------------------------------------- /alpine-djigzo/resources/app/djigzo/conf/james/SAR-INF/smtp_server_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/app/djigzo/conf/james/SAR-INF/smtp_server_config.xml -------------------------------------------------------------------------------- /alpine-djigzo/resources/app/djigzo/conf/james/SAR-INF/smtp_transport_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/app/djigzo/conf/james/SAR-INF/smtp_transport_config.xml -------------------------------------------------------------------------------- /alpine-djigzo/resources/app/djigzo/wrapper/wrapper-additional-parameters.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/app/djigzo/wrapper/wrapper-additional-parameters.conf -------------------------------------------------------------------------------- /alpine-djigzo/resources/app/tomcat8/conf/Catalina/localhost/ciphermail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/app/tomcat8/conf/Catalina/localhost/ciphermail.xml -------------------------------------------------------------------------------- /alpine-djigzo/resources/app/tomcat8/conf/Catalina/localhost/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/app/tomcat8/conf/Catalina/localhost/web.xml -------------------------------------------------------------------------------- /alpine-djigzo/resources/app/tomcat8/conf/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/app/tomcat8/conf/server.xml -------------------------------------------------------------------------------- /alpine-djigzo/resources/app/tomcat8/conf/server.xml.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/app/tomcat8/conf/server.xml.org -------------------------------------------------------------------------------- /alpine-djigzo/resources/etc/cont-init.d/10-mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/etc/cont-init.d/10-mysql -------------------------------------------------------------------------------- /alpine-djigzo/resources/etc/cont-init.d/20-openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/etc/cont-init.d/20-openssl -------------------------------------------------------------------------------- /alpine-djigzo/resources/etc/cont-init.d/30-mail-callback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/etc/cont-init.d/30-mail-callback -------------------------------------------------------------------------------- /alpine-djigzo/resources/etc/services.d/10-backend/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/etc/services.d/10-backend/run -------------------------------------------------------------------------------- /alpine-djigzo/resources/etc/services.d/20-web/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-djigzo/resources/etc/services.d/20-web/run -------------------------------------------------------------------------------- /alpine-fluentd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fluentd/Dockerfile -------------------------------------------------------------------------------- /alpine-fluentd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fluentd/README.md -------------------------------------------------------------------------------- /alpine-fluentd/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fluentd/hooks/build -------------------------------------------------------------------------------- /alpine-fluentd/resources/etc/cont-init.d/00-fluentd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fluentd/resources/etc/cont-init.d/00-fluentd -------------------------------------------------------------------------------- /alpine-fluentd/resources/etc/crontabs/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fluentd/resources/etc/crontabs/root -------------------------------------------------------------------------------- /alpine-fluentd/resources/etc/fix-attrs.d/01-fluent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fluentd/resources/etc/fix-attrs.d/01-fluent -------------------------------------------------------------------------------- /alpine-fluentd/resources/etc/fluent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fluentd/resources/etc/fluent.conf -------------------------------------------------------------------------------- /alpine-fluentd/resources/etc/services.d/10-fluentd/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fluentd/resources/etc/services.d/10-fluentd/run -------------------------------------------------------------------------------- /alpine-fluentd/resources/etc/services.d/20-crond/run: -------------------------------------------------------------------------------- 1 | #!/command/with-contenv sh 2 | 3 | exec /usr/sbin/crond -f -S 4 | -------------------------------------------------------------------------------- /alpine-fuglu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/Dockerfile -------------------------------------------------------------------------------- /alpine-fuglu/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/hooks/build -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/clamav/clamd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/clamav/clamd.conf -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/clamav/freshclam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/clamav/freshclam.conf -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/cont-init.d/00-fuglu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/cont-init.d/00-fuglu -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/cont-init.d/10-clamav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/cont-init.d/10-clamav -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/cont-init.d/20-spamassassin: -------------------------------------------------------------------------------- 1 | #!/command/with-contenv sh 2 | 3 | /usr/bin/sa-update -v 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/fuglu/fuglu.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/fuglu/fuglu.conf.dist -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/fuglu/logging.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/fuglu/logging.conf.dist -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/fuglu/sql/attachmentrules.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/fuglu/sql/attachmentrules.sql -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/fuglu/sql/fugluconfig.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/fuglu/sql/fugluconfig.sql -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/services.d/00_syslog/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/services.d/00_syslog/run -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/services.d/10_clamd/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/services.d/10_clamd/run -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/services.d/20_spamd/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/services.d/20_spamd/run -------------------------------------------------------------------------------- /alpine-fuglu/resources/etc/services.d/50_fuglu/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-fuglu/resources/etc/services.d/50_fuglu/run -------------------------------------------------------------------------------- /alpine-go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-go/Dockerfile -------------------------------------------------------------------------------- /alpine-go/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-go/hooks/build -------------------------------------------------------------------------------- /alpine-grimd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-grimd/Dockerfile -------------------------------------------------------------------------------- /alpine-grimd/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-grimd/hooks/build -------------------------------------------------------------------------------- /alpine-grimd/resources/etc/services.d/10_grimd/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-grimd/resources/etc/services.d/10_grimd/run -------------------------------------------------------------------------------- /alpine-haproxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/Dockerfile -------------------------------------------------------------------------------- /alpine-haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/README.md -------------------------------------------------------------------------------- /alpine-haproxy/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/hooks/build -------------------------------------------------------------------------------- /alpine-haproxy/resources/app/docker-gen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/app/docker-gen.cfg -------------------------------------------------------------------------------- /alpine-haproxy/resources/app/haproxy.cfg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/app/haproxy.cfg.tmpl -------------------------------------------------------------------------------- /alpine-haproxy/resources/app/reload-haproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/app/reload-haproxy.sh -------------------------------------------------------------------------------- /alpine-haproxy/resources/app/update-cf-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/app/update-cf-list.sh -------------------------------------------------------------------------------- /alpine-haproxy/resources/crontabs/haproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/crontabs/haproxy -------------------------------------------------------------------------------- /alpine-haproxy/resources/data/ssl/crt-list.txt: -------------------------------------------------------------------------------- 1 | /data/ssl/default.pem * 2 | -------------------------------------------------------------------------------- /alpine-haproxy/resources/etc/cont-init.d/90-haproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/etc/cont-init.d/90-haproxy -------------------------------------------------------------------------------- /alpine-haproxy/resources/etc/cont-init.d/99-openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/etc/cont-init.d/99-openssl -------------------------------------------------------------------------------- /alpine-haproxy/resources/etc/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/etc/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /alpine-haproxy/resources/etc/haproxy/lua/acme-http01-webroot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/etc/haproxy/lua/acme-http01-webroot.lua -------------------------------------------------------------------------------- /alpine-haproxy/resources/etc/services.d/.s6-svscan/finish: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 -------------------------------------------------------------------------------- /alpine-haproxy/resources/etc/services.d/10_syslog/run: -------------------------------------------------------------------------------- 1 | #!/command/execlineb -P 2 | 3 | /sbin/syslogd -n -O - 4 | -------------------------------------------------------------------------------- /alpine-haproxy/resources/etc/services.d/50_haproxy/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/etc/services.d/50_haproxy/run -------------------------------------------------------------------------------- /alpine-haproxy/resources/etc/services.d/99_docker_gen/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/etc/services.d/99_docker_gen/run -------------------------------------------------------------------------------- /alpine-haproxy/resources/usr/bin/certbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-haproxy/resources/usr/bin/certbot -------------------------------------------------------------------------------- /alpine-mariadb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mariadb/Dockerfile -------------------------------------------------------------------------------- /alpine-mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mariadb/README.md -------------------------------------------------------------------------------- /alpine-mariadb/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mariadb/hooks/build -------------------------------------------------------------------------------- /alpine-mariadb/resources/etc/cont-init.d/00-mariadb-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mariadb/resources/etc/cont-init.d/00-mariadb-init -------------------------------------------------------------------------------- /alpine-mariadb/resources/etc/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mariadb/resources/etc/mysql/my.cnf -------------------------------------------------------------------------------- /alpine-mariadb/resources/etc/services.d/mariadb/run: -------------------------------------------------------------------------------- 1 | #!/command/with-contenv sh 2 | 3 | exec /usr/bin/mysqld_safe --pid-file=$PID_FILE 4 | -------------------------------------------------------------------------------- /alpine-matrix/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-matrix/Dockerfile -------------------------------------------------------------------------------- /alpine-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-matrix/README.md -------------------------------------------------------------------------------- /alpine-matrix/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-matrix/hooks/build -------------------------------------------------------------------------------- /alpine-mozilla-syncserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mozilla-syncserver/Dockerfile -------------------------------------------------------------------------------- /alpine-mozilla-syncserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mozilla-syncserver/README.md -------------------------------------------------------------------------------- /alpine-mumble/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mumble/Dockerfile -------------------------------------------------------------------------------- /alpine-mumble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mumble/README.md -------------------------------------------------------------------------------- /alpine-mumble/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mumble/hooks/build -------------------------------------------------------------------------------- /alpine-mumble/resources/etc/cont-init.d/10-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mumble/resources/etc/cont-init.d/10-setup -------------------------------------------------------------------------------- /alpine-mumble/resources/etc/fix-attrs.d/01-mumble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mumble/resources/etc/fix-attrs.d/01-mumble -------------------------------------------------------------------------------- /alpine-mumble/resources/etc/murmur.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-mumble/resources/etc/murmur.ini -------------------------------------------------------------------------------- /alpine-mumble/resources/etc/services.d/10_mumble/run: -------------------------------------------------------------------------------- 1 | #!/command/with-contenv sh 2 | 3 | exec /usr/bin/murmurd -fg -v 4 | -------------------------------------------------------------------------------- /alpine-musicbot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-musicbot/Dockerfile -------------------------------------------------------------------------------- /alpine-musicbot/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-musicbot/hooks/build -------------------------------------------------------------------------------- /alpine-musicbot/resources/etc/cont-init.d/10-musicbot-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-musicbot/resources/etc/cont-init.d/10-musicbot-init -------------------------------------------------------------------------------- /alpine-musicbot/resources/etc/services.d/10_musicbot/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-musicbot/resources/etc/services.d/10_musicbot/run -------------------------------------------------------------------------------- /alpine-netdata/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-netdata/Dockerfile -------------------------------------------------------------------------------- /alpine-netdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-netdata/README.md -------------------------------------------------------------------------------- /alpine-netdata/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-netdata/hooks/build -------------------------------------------------------------------------------- /alpine-netdata/resources/etc/cont-init.d/10-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-netdata/resources/etc/cont-init.d/10-setup -------------------------------------------------------------------------------- /alpine-netdata/resources/etc/services.d/10_netdata/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-netdata/resources/etc/services.d/10_netdata/run -------------------------------------------------------------------------------- /alpine-newsboat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-newsboat/Dockerfile -------------------------------------------------------------------------------- /alpine-newsboat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-newsboat/README.md -------------------------------------------------------------------------------- /alpine-newsboat/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-newsboat/hooks/build -------------------------------------------------------------------------------- /alpine-newsboat/resources/etc/cont-init.d/10-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-newsboat/resources/etc/cont-init.d/10-setup -------------------------------------------------------------------------------- /alpine-newsboat/resources/etc/fix-attrs.d/01-newsboat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-newsboat/resources/etc/fix-attrs.d/01-newsboat -------------------------------------------------------------------------------- /alpine-newsboat/resources/usr/local/bin/newsboat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-newsboat/resources/usr/local/bin/newsboat -------------------------------------------------------------------------------- /alpine-nginx-freshrss-php7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss-php7/Dockerfile -------------------------------------------------------------------------------- /alpine-nginx-freshrss-php7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss-php7/README.md -------------------------------------------------------------------------------- /alpine-nginx-freshrss-php7/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss-php7/hooks/build -------------------------------------------------------------------------------- /alpine-nginx-freshrss-php7/resources/etc/cont-finish.d/99-freshrss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss-php7/resources/etc/cont-finish.d/99-freshrss -------------------------------------------------------------------------------- /alpine-nginx-freshrss-php7/resources/etc/cont-init.d/99-freshrss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss-php7/resources/etc/cont-init.d/99-freshrss -------------------------------------------------------------------------------- /alpine-nginx-freshrss-php7/resources/etc/crontabs/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss-php7/resources/etc/crontabs/root -------------------------------------------------------------------------------- /alpine-nginx-freshrss-php7/resources/etc/services.d/crond/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss-php7/resources/etc/services.d/crond/run -------------------------------------------------------------------------------- /alpine-nginx-freshrss/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss/Dockerfile -------------------------------------------------------------------------------- /alpine-nginx-freshrss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss/README.md -------------------------------------------------------------------------------- /alpine-nginx-freshrss/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss/hooks/build -------------------------------------------------------------------------------- /alpine-nginx-freshrss/resources/etc/cont-finish.d/99-freshrss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss/resources/etc/cont-finish.d/99-freshrss -------------------------------------------------------------------------------- /alpine-nginx-freshrss/resources/etc/cont-init.d/99-freshrss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss/resources/etc/cont-init.d/99-freshrss -------------------------------------------------------------------------------- /alpine-nginx-freshrss/resources/etc/crontabs/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss/resources/etc/crontabs/root -------------------------------------------------------------------------------- /alpine-nginx-freshrss/resources/etc/services.d/crond/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-freshrss/resources/etc/services.d/crond/run -------------------------------------------------------------------------------- /alpine-nginx-matomo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-matomo/Dockerfile -------------------------------------------------------------------------------- /alpine-nginx-matomo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-matomo/README.md -------------------------------------------------------------------------------- /alpine-nginx-matomo/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-matomo/hooks/build -------------------------------------------------------------------------------- /alpine-nginx-matomo/resources/etc/php8/conf.d/zzz-custom.ini: -------------------------------------------------------------------------------- 1 | always_populate_raw_post_data = -1 2 | -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-nextcloud/Dockerfile -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/README.md: -------------------------------------------------------------------------------- 1 | # alpine-nginx-nextcloud 2 | -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-nextcloud/hooks/build -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/resources/etc/cont-init.d/10-pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-nextcloud/resources/etc/cont-init.d/10-pre -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/resources/etc/crontabs/www-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-nextcloud/resources/etc/crontabs/www-data -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/resources/etc/fix-attrs.d/02-usr-bin: -------------------------------------------------------------------------------- 1 | /usr/bin/occ false www-data 0760 0750 2 | -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/resources/etc/nginx/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-nextcloud/resources/etc/nginx/fastcgi_params -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/resources/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-nextcloud/resources/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/resources/etc/php8/conf.d/99_custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-nextcloud/resources/etc/php8/conf.d/99_custom.ini -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/resources/etc/services.d/cron/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-nextcloud/resources/etc/services.d/cron/run -------------------------------------------------------------------------------- /alpine-nginx-nextcloud/resources/usr/bin/occ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-nextcloud/resources/usr/bin/occ -------------------------------------------------------------------------------- /alpine-nginx-organizr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-organizr/Dockerfile -------------------------------------------------------------------------------- /alpine-nginx-organizr/README.md: -------------------------------------------------------------------------------- 1 | # alpine-nginx-organizr 2 | -------------------------------------------------------------------------------- /alpine-nginx-organizr/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-organizr/hooks/build -------------------------------------------------------------------------------- /alpine-nginx-organizr/resources/etc/fix-attrs.d/01-config: -------------------------------------------------------------------------------- 1 | /config true www-data 0600 0700 -------------------------------------------------------------------------------- /alpine-nginx-organizr/resources/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-organizr/resources/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /alpine-nginx-php5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-php5/Dockerfile -------------------------------------------------------------------------------- /alpine-nginx-php5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-php5/README.md -------------------------------------------------------------------------------- /alpine-nginx-php5/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/combro2k/dockerfiles/HEAD/alpine-nginx-php5/hooks/build -------------------------------------------------------------------------------- /alpine-nginx-php5/resources/data/web/index.php: -------------------------------------------------------------------------------- 1 |