├── .editorconfig ├── .github └── workflows │ └── docker-build.yml ├── .gitignore ├── Dockerfile ├── Dockerfile.aarch64 ├── LICENSE ├── README.md ├── compose.yml └── root ├── defaults ├── autostart └── menu.xml ├── etc └── s6-overlay │ └── s6-rc.d │ ├── init-beeper-config │ ├── dependencies.d │ │ └── init-config │ ├── run │ ├── type │ └── up │ ├── init-config-end │ └── dependencies.d │ │ └── init-beeper-config │ └── user │ └── contents.d │ └── init-beeper-config └── usr └── bin ├── beeper └── chromium /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .jenkins-external 2 | config/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/Dockerfile.aarch64 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/README.md -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/compose.yml -------------------------------------------------------------------------------- /root/defaults/autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/root/defaults/autostart -------------------------------------------------------------------------------- /root/defaults/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/root/defaults/menu.xml -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-beeper-config/dependencies.d/init-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-beeper-config/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/root/etc/s6-overlay/s6-rc.d/init-beeper-config/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-beeper-config/type: -------------------------------------------------------------------------------- 1 | oneshot -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-beeper-config/up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/root/etc/s6-overlay/s6-rc.d/init-beeper-config/up -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-beeper-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/init-beeper-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/usr/bin/beeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/root/usr/bin/beeper -------------------------------------------------------------------------------- /root/usr/bin/chromium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachatrocity/docker-beeper/HEAD/root/usr/bin/chromium --------------------------------------------------------------------------------