{"id":21522626,"url":"https://github.com/takeyamajp/docker-debian-sshd","last_synced_at":"2025-04-09T22:40:38.806Z","repository":{"id":165087495,"uuid":"233342140","full_name":"takeyamajp/docker-debian-sshd","owner":"takeyamajp","description":"Debian image with SSH \u0026 SFTP","archived":false,"fork":false,"pushed_at":"2023-08-19T01:58:33.000Z","size":64,"stargazers_count":8,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T00:38:03.649Z","etag":null,"topics":["debian","docker","sftp","ssh"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/takeyamajp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-12T05:16:13.000Z","updated_at":"2024-11-08T08:31:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"8e647aac-5336-4030-bb91-c8565a1cc9c2","html_url":"https://github.com/takeyamajp/docker-debian-sshd","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeyamajp%2Fdocker-debian-sshd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeyamajp%2Fdocker-debian-sshd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeyamajp%2Fdocker-debian-sshd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeyamajp%2Fdocker-debian-sshd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/takeyamajp","download_url":"https://codeload.github.com/takeyamajp/docker-debian-sshd/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248124842,"owners_count":21051757,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["debian","docker","sftp","ssh"],"created_at":"2024-11-24T01:11:11.898Z","updated_at":"2025-04-09T22:40:38.798Z","avatar_url":"https://github.com/takeyamajp.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# debian-sshd\nStar this repository if it is useful for you.  \n[![Docker Stars](https://img.shields.io/docker/stars/takeyamajp/debian-sshd.svg)](https://hub.docker.com/r/takeyamajp/debian-sshd/)\n[![Docker Pulls](https://img.shields.io/docker/pulls/takeyamajp/debian-sshd.svg)](https://hub.docker.com/r/takeyamajp/debian-sshd/)\n[![license](https://img.shields.io/github/license/takeyamajp/docker-debian-sshd.svg)](https://github.com/takeyamajp/docker-debian-sshd/blob/master/LICENSE)\n\n## Supported tags and respective Dockerfile links  \n- [`latest` `debian12` `bookworm`](https://github.com/takeyamajp/docker-debian-sshd/blob/master/debian12/Dockerfile), [`bookworm-slim`](https://github.com/takeyamajp/docker-debian-sshd/blob/master/debian12/slim/Dockerfile)\n- [`debian11` `bullseye`](https://github.com/takeyamajp/docker-debian-sshd/blob/master/debian11/Dockerfile), [`bullseye-slim`](https://github.com/takeyamajp/docker-debian-sshd/blob/master/debian11/slim/Dockerfile)\n- [`debian10` `buster`](https://github.com/takeyamajp/docker-debian-sshd/blob/master/debian10/Dockerfile), [`buster-slim`](https://github.com/takeyamajp/docker-debian-sshd/blob/master/debian10/slim/Dockerfile)\n- [`debian9` `stretch`](https://github.com/takeyamajp/docker-debian-sshd/blob/master/debian9/Dockerfile), [`stretch-slim`](https://github.com/takeyamajp/docker-debian-sshd/blob/master/debian9/slim/Dockerfile)\n\n ### Supported architectures: ([`more info`](https://github.com/docker-library/official-images#architectures-other-than-amd64))  \n `amd64`, `arm64(for Raspberry Pi)`\n\n## Image summary\n    FROM debian:bookworm  \n    MAINTAINER \"Hiroki Takeyama\"\n    \n    ENV TZ Asia/Tokyo\n    \n    ENV ROOT_PASSWORD root\n    \n    EXPOSE 22\n\n## How to use\nThis container can be accessed by SSH and SFTP clients.\n\n    docker run -d --name debian-sshd \\  \n           -e TZ=Asia/Tokyo \\  \n           -e ROOT_PASSWORD=root \\  \n           -p 8022:22 \\  \n           takeyamajp/debian-sshd\n\nYou can add extra ports and volumes as follows if you want.\n\n    docker run -d --name debian-sshd \\  \n           -e TZ=Asia/Tokyo \\  \n           -e ROOT_PASSWORD=root \\  \n           -p 8022:22 \\  \n           -p 8080:80 \\  \n           -v /my/own/datadir:/var/www/html \\  \n           takeyamajp/debian-sshd\n\nSCP command can be used for transferring files.\n\n    scp -P 8022 -r /my/own/apache2.conf root@localhost:/etc/apache2/apache2.conf\n\n## Time zone\nYou can use any time zone such as America/Chicago that can be used in Debian.  \n\nSee below for zones.  \nhttps://www.unicode.org/cldr/charts/latest/verify/zones/en.html\n\n## Logging\nThis container logs the beginning, authentication, and termination of each connection.  \nUse the following command to view the logs in real time.\n\n    docker logs -f debian-sshd\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakeyamajp%2Fdocker-debian-sshd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftakeyamajp%2Fdocker-debian-sshd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakeyamajp%2Fdocker-debian-sshd/lists"}