├── Dockerfile ├── Dockerfile.arm32v7 ├── Dockerfile.arm64v8 ├── README.md ├── certs └── .gitignore ├── config ├── haproxy │ └── haproxy.cfg ├── openbox │ └── menu.xml ├── runit │ ├── haproxy │ │ └── run │ ├── openbox │ │ └── run │ ├── rsyslog │ │ ├── finish │ │ └── run │ ├── sshd │ │ └── run │ ├── websockify-tls │ │ └── run │ ├── websockify │ │ └── run │ ├── x11vnc │ │ └── run │ └── xvfb │ │ └── run └── ssh │ └── sshd_config ├── docker-compose.yml ├── hooks ├── post_push └── pre_build ├── multi-arch-manifest.yaml └── scripts ├── app ├── docker-healthcheck.sh └── entrypoint.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.arm32v7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/Dockerfile.arm32v7 -------------------------------------------------------------------------------- /Dockerfile.arm64v8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/Dockerfile.arm64v8 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/README.md -------------------------------------------------------------------------------- /certs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/certs/.gitignore -------------------------------------------------------------------------------- /config/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/config/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /config/openbox/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/config/openbox/menu.xml -------------------------------------------------------------------------------- /config/runit/haproxy/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/config/runit/haproxy/run -------------------------------------------------------------------------------- /config/runit/openbox/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/config/runit/openbox/run -------------------------------------------------------------------------------- /config/runit/rsyslog/finish: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm /var/run/rsyslogd.pid -------------------------------------------------------------------------------- /config/runit/rsyslog/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec /usr/sbin/rsyslogd -n -------------------------------------------------------------------------------- /config/runit/sshd/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/config/runit/sshd/run -------------------------------------------------------------------------------- /config/runit/websockify-tls/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/config/runit/websockify-tls/run -------------------------------------------------------------------------------- /config/runit/websockify/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/config/runit/websockify/run -------------------------------------------------------------------------------- /config/runit/x11vnc/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/config/runit/x11vnc/run -------------------------------------------------------------------------------- /config/runit/xvfb/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/config/runit/xvfb/run -------------------------------------------------------------------------------- /config/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/config/ssh/sshd_config -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/hooks/post_push -------------------------------------------------------------------------------- /hooks/pre_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/hooks/pre_build -------------------------------------------------------------------------------- /multi-arch-manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/multi-arch-manifest.yaml -------------------------------------------------------------------------------- /scripts/app: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . /etc/environment 3 | echo starting app... 4 | -------------------------------------------------------------------------------- /scripts/docker-healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/scripts/docker-healthcheck.sh -------------------------------------------------------------------------------- /scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopContainers/base-debian/HEAD/scripts/entrypoint.sh --------------------------------------------------------------------------------