├── .cursor └── rules ├── .github ├── header.png └── workflows │ ├── action_publish-images-beta.yml │ ├── action_publish-images-edge.yml │ ├── action_publish-images-production.yml │ ├── scheduled-task_scan-security-vulnerabilties.yml │ ├── scheduled-task_update-sponsors.yml │ └── service_docker-build-and-publish.yml ├── LICENSE ├── README.md └── src ├── Dockerfile └── rootfs ├── entrypoint.sh └── usr └── local └── bin ├── serversideup-create-unprivileged-user └── serversideup-dep-install-debian /.cursor/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/.cursor/rules -------------------------------------------------------------------------------- /.github/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/.github/header.png -------------------------------------------------------------------------------- /.github/workflows/action_publish-images-beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/.github/workflows/action_publish-images-beta.yml -------------------------------------------------------------------------------- /.github/workflows/action_publish-images-edge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/.github/workflows/action_publish-images-edge.yml -------------------------------------------------------------------------------- /.github/workflows/action_publish-images-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/.github/workflows/action_publish-images-production.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-task_scan-security-vulnerabilties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/.github/workflows/scheduled-task_scan-security-vulnerabilties.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-task_update-sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/.github/workflows/scheduled-task_update-sponsors.yml -------------------------------------------------------------------------------- /.github/workflows/service_docker-build-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/.github/workflows/service_docker-build-and-publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/README.md -------------------------------------------------------------------------------- /src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/src/Dockerfile -------------------------------------------------------------------------------- /src/rootfs/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/src/rootfs/entrypoint.sh -------------------------------------------------------------------------------- /src/rootfs/usr/local/bin/serversideup-create-unprivileged-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/src/rootfs/usr/local/bin/serversideup-create-unprivileged-user -------------------------------------------------------------------------------- /src/rootfs/usr/local/bin/serversideup-dep-install-debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serversideup/docker-ssh/HEAD/src/rootfs/usr/local/bin/serversideup-dep-install-debian --------------------------------------------------------------------------------