├── .editorconfig ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml ├── SUPPORT.md ├── dependabot.yml ├── labels.yml └── workflows │ ├── build.yml │ ├── labels.yml │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-bake.hcl └── test ├── legacy-pureftpd ├── Dockerfile ├── patchs │ └── minimal.patch ├── rootfs │ └── etc │ │ ├── cont-init.d │ │ ├── 01-config.sh │ │ ├── 02-service.sh │ │ └── 03-uploadscript.sh │ │ └── socklog.rules │ │ └── pure-ftpd └── testconfig.json ├── legacy-rrdtool ├── Dockerfile ├── rootfs │ └── etc │ │ ├── cont-init.d │ │ ├── 00-fix-logs.sh │ │ ├── 01-fix-uidgid.sh │ │ ├── 02-fix-perms.sh │ │ └── 04-svc-main.sh │ │ └── socklog.rules │ │ └── rrdcached └── testconfig.json ├── nginx-dist ├── Dockerfile ├── rootfs │ └── etc │ │ └── s6-overlay │ │ └── s6-rc.d │ │ ├── nginx │ │ ├── dependencies.d │ │ │ └── base │ │ ├── run │ │ └── type │ │ └── user │ │ └── contents.d │ │ └── nginx └── testconfig.json ├── nginx-legacy-dist ├── Dockerfile └── testconfig.json ├── nginx-legacy ├── Dockerfile └── testconfig.json └── nginx ├── Dockerfile ├── rootfs └── etc │ └── s6-overlay │ └── s6-rc.d │ ├── nginx │ ├── dependencies.d │ │ └── base │ ├── run │ └── type │ └── user │ └── contents.d │ └── nginx └── testconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @crazy-max 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/README.md -------------------------------------------------------------------------------- /docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/docker-bake.hcl -------------------------------------------------------------------------------- /test/legacy-pureftpd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-pureftpd/Dockerfile -------------------------------------------------------------------------------- /test/legacy-pureftpd/patchs/minimal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-pureftpd/patchs/minimal.patch -------------------------------------------------------------------------------- /test/legacy-pureftpd/rootfs/etc/cont-init.d/01-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-pureftpd/rootfs/etc/cont-init.d/01-config.sh -------------------------------------------------------------------------------- /test/legacy-pureftpd/rootfs/etc/cont-init.d/02-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-pureftpd/rootfs/etc/cont-init.d/02-service.sh -------------------------------------------------------------------------------- /test/legacy-pureftpd/rootfs/etc/cont-init.d/03-uploadscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-pureftpd/rootfs/etc/cont-init.d/03-uploadscript.sh -------------------------------------------------------------------------------- /test/legacy-pureftpd/rootfs/etc/socklog.rules/pure-ftpd: -------------------------------------------------------------------------------- 1 | - 2 | +^ftp\. 3 | 1 4 | -------------------------------------------------------------------------------- /test/legacy-pureftpd/testconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-pureftpd/testconfig.json -------------------------------------------------------------------------------- /test/legacy-rrdtool/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-rrdtool/Dockerfile -------------------------------------------------------------------------------- /test/legacy-rrdtool/rootfs/etc/cont-init.d/00-fix-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-rrdtool/rootfs/etc/cont-init.d/00-fix-logs.sh -------------------------------------------------------------------------------- /test/legacy-rrdtool/rootfs/etc/cont-init.d/01-fix-uidgid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-rrdtool/rootfs/etc/cont-init.d/01-fix-uidgid.sh -------------------------------------------------------------------------------- /test/legacy-rrdtool/rootfs/etc/cont-init.d/02-fix-perms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-rrdtool/rootfs/etc/cont-init.d/02-fix-perms.sh -------------------------------------------------------------------------------- /test/legacy-rrdtool/rootfs/etc/cont-init.d/04-svc-main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-rrdtool/rootfs/etc/cont-init.d/04-svc-main.sh -------------------------------------------------------------------------------- /test/legacy-rrdtool/rootfs/etc/socklog.rules/rrdcached: -------------------------------------------------------------------------------- 1 | - 2 | +^daemon\. 3 | 1 4 | -------------------------------------------------------------------------------- /test/legacy-rrdtool/testconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/legacy-rrdtool/testconfig.json -------------------------------------------------------------------------------- /test/nginx-dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/nginx-dist/Dockerfile -------------------------------------------------------------------------------- /test/nginx-dist/rootfs/etc/s6-overlay/s6-rc.d/nginx/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/nginx-dist/rootfs/etc/s6-overlay/s6-rc.d/nginx/run: -------------------------------------------------------------------------------- 1 | #!/command/execlineb -P 2 | nginx -g "daemon off;" -------------------------------------------------------------------------------- /test/nginx-dist/rootfs/etc/s6-overlay/s6-rc.d/nginx/type: -------------------------------------------------------------------------------- 1 | longrun -------------------------------------------------------------------------------- /test/nginx-dist/rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/nginx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/nginx-dist/testconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/nginx-dist/testconfig.json -------------------------------------------------------------------------------- /test/nginx-legacy-dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/nginx-legacy-dist/Dockerfile -------------------------------------------------------------------------------- /test/nginx-legacy-dist/testconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/nginx-legacy-dist/testconfig.json -------------------------------------------------------------------------------- /test/nginx-legacy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/nginx-legacy/Dockerfile -------------------------------------------------------------------------------- /test/nginx-legacy/testconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/nginx-legacy/testconfig.json -------------------------------------------------------------------------------- /test/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/nginx/Dockerfile -------------------------------------------------------------------------------- /test/nginx/rootfs/etc/s6-overlay/s6-rc.d/nginx/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/nginx/rootfs/etc/s6-overlay/s6-rc.d/nginx/run: -------------------------------------------------------------------------------- 1 | #!/command/execlineb -P 2 | nginx -g "daemon off;" -------------------------------------------------------------------------------- /test/nginx/rootfs/etc/s6-overlay/s6-rc.d/nginx/type: -------------------------------------------------------------------------------- 1 | longrun -------------------------------------------------------------------------------- /test/nginx/rootfs/etc/s6-overlay/s6-rc.d/user/contents.d/nginx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/nginx/testconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazy-max/docker-alpine-s6/HEAD/test/nginx/testconfig.json --------------------------------------------------------------------------------