{"id":25839684,"url":"https://github.com/netresearch/docker-apt-dater","last_synced_at":"2026-04-14T18:32:04.013Z","repository":{"id":136541907,"uuid":"148311743","full_name":"netresearch/docker-apt-dater","owner":"netresearch","description":"A Docker container image for running apt-dater","archived":false,"fork":false,"pushed_at":"2025-02-19T12:57:39.000Z","size":23,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-11-23T21:21:38.868Z","etag":null,"topics":["apt-dater","docker-image"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/netresearch.png","metadata":{"files":{"readme":"README.rst","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-09-11T12:12:30.000Z","updated_at":"2025-02-19T12:57:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"d807fc7b-dfe1-4cce-b6c9-bc8fefae1194","html_url":"https://github.com/netresearch/docker-apt-dater","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/netresearch/docker-apt-dater","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fdocker-apt-dater","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fdocker-apt-dater/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fdocker-apt-dater/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fdocker-apt-dater/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/netresearch","download_url":"https://codeload.github.com/netresearch/docker-apt-dater/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fdocker-apt-dater/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31810737,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["apt-dater","docker-image"],"created_at":"2025-03-01T04:34:04.042Z","updated_at":"2026-04-14T18:32:03.997Z","avatar_url":"https://github.com/netresearch.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"Docker Container for apt-dater\n==============================\n\n- OS: Debian unstable\n- Service: apt-dater\n\napt-dater provides an ncurses interface for managing package updates of multiple\nhosts.\n\n- https://github.com/DE-IBH/apt-dater\n\nThis container image uses the debian version of apt-dater, which includes some\nextra patches not merged in above github repository.\n\nFor general apt-dater usage or preparation of hosts please see apt-dater manual.\n\nUsage\n-----\n\nYou can prepare a host folder with example files if you like::\n    \n    docker run -v `pwd`:/var/apt-dater-init netresearch/apt-dater init\n\n\nThis will copy example docker-compose.yml and hosts.xml and README to your current folder.\n\nUse docker-compose to start apt-dater container:\n\nStart apt-dater TUI::\n    \n    docker-compose run --rm apt-dater\n\n\nJust update hosts and print result as XML::\n    \n    docker-compose run --rm apt-dater -r\n\n\nPrint apt-dater help screen::\n    \n    docker-compose run --rm apt-dater -h\n\n\nConfiguration\n-------------\n\nAdding hosts\n............\n\nPreparing your hosts\n,,,,,,,,,,,,,,,,,,,,\n\n- install apt-dater-host package\n- configure a user to be used by apt-dater\n- deploy your public key to the hosts\n\nFor more details see https://github.com/DE-IBH/apt-dater\n\nAdd hosts to apt-dater\n,,,,,,,,,,,,,,,,,,,,,,\n\nCopy hosts.d/host.xml.example to hosts.d/yourhost.xml and modify it to your needs.\n\nYou can have multiple hosts.d/\u003cyourhost\u003e.xml files, the container entrypoint script\nwill merge them.\n\nhosts.d/host.xml example::\n    \n    \u003cgroup name=\"Internal Hosts\"\u003e\n        \u003chost name=\"server1.internal\" ssh-user=\"apt-dater\"/\u003e\n    \u003c/group\u003e\n\n\nAdd SSH key\n...........\n\nBy default the private key of the user starting the container is used by apt-dater\nto authenticate with managed hosts.\n\nEdit docker-compose.yml or alter docker command line to use another SSH key.\n\n\nDetailed usage\n--------------\n\nStart apt-dater container with Docker::\n\n    docker run -ti --rm \\\n        -v ~/.ssh/id_rsa:/opt/apt-dater/id_rsa1 \\        # mount private key of current user, used for authentication against apt-dater managed hosts\n        -v `realpath ./hosts.d`:/opt/apt-dater/hosts.d \\ # mount apt-dater hosts configuration\n        netresearch/apt-dater\n\n\nWrapper for apt-dater CLI command\n---------------------------------\n\nIn contrib/ you find a simple shell script which can be used as a wrapper for\napt-dater CLI command, just place it in /usr/bin and modify the path in the script.\n\n\nKnown issues\n------------\n\n- auto-refresh is disabled, it caused hosts to disappear in apt-dater host list\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetresearch%2Fdocker-apt-dater","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetresearch%2Fdocker-apt-dater","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetresearch%2Fdocker-apt-dater/lists"}