{"id":18616003,"url":"https://github.com/bjoern-hempel/simply-docker","last_synced_at":"2026-05-05T00:34:36.839Z","repository":{"id":110076897,"uuid":"79742933","full_name":"bjoern-hempel/simply-docker","owner":"bjoern-hempel","description":"Simply manage your docker images and containers.","archived":false,"fork":false,"pushed_at":"2018-08-21T22:35:16.000Z","size":36,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-27T03:13:12.614Z","etag":null,"topics":["bash","docker","docker-container","docker-image","docker-manager","friends-of-bash","mit-license","shell"],"latest_commit_sha":null,"homepage":"https://www.ixno.de","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bjoern-hempel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2017-01-22T20:18:03.000Z","updated_at":"2018-08-21T22:35:42.000Z","dependencies_parsed_at":"2023-04-01T15:48:30.879Z","dependency_job_id":null,"html_url":"https://github.com/bjoern-hempel/simply-docker","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/bjoern-hempel%2Fsimply-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bjoern-hempel%2Fsimply-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bjoern-hempel%2Fsimply-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bjoern-hempel%2Fsimply-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bjoern-hempel","download_url":"https://codeload.github.com/bjoern-hempel/simply-docker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239412486,"owners_count":19634016,"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":["bash","docker","docker-container","docker-image","docker-manager","friends-of-bash","mit-license","shell"],"created_at":"2024-11-07T03:33:45.961Z","updated_at":"2025-11-03T05:30:21.221Z","avatar_url":"https://github.com/bjoern-hempel.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# simply-docker\n\n\u003e Simply manage your docker images and containers.\n\n\n## Install\n\n```\n$ mkdir simply-docker\n$ cd simply-docker\n$ git clone git@github.com:bjoern-hempel/simply-docker.git .\n$ sudo ./install\n[2017-02-20 00:41:09] [INFO‧‧‧] ┏━  Try to install the given script\n                                ┃   /home/user/simply-docker/bin/image to\n                                ┗━  /usr/local/bin/sd-image.\n[2017-02-20 00:41:09] [SUCCESS] ┏━  The given script\n                                ┃   /home/user/simply-docker/bin/image\n                                ┗━  was successfully installed to \n[2017-02-20 00:41:09] [INFO‧‧‧] ┏━  Try to install the given script\n                                ┃   /home/user/simply-docker/bin/container to\n                                ┗━  /usr/local/bin/sd-container.\n[2017-02-20 00:41:09] [SUCCESS] ┏━  The given script\n                                ┃   /home/user/simply-docker/bin/container\n                                ┗━  was successfully installed to\n```\n\n\n## Usage\n\n```\nuser$ mkdir docker\nuser$ cd docker\nuser$ mkdir containers\nuser$ sd-container create ubuntu --image=ubuntu:latest\n[2017-02-20 00:51:33] [INFO‧‧‧] No local image \"ubuntu:latest\" found.\n[2017-02-20 00:51:35] [INFO‧‧‧] Remote image \"ubuntu\" found.\n[2017-02-20 00:51:37] [INFO‧‧‧] Remote image \"ubuntu\" and remote \"latest\" found.\n[2017-02-20 00:51:37] [INFO‧‧‧] Container \"ubuntu\" was successfully created\nuser$ sd-container status ubuntu\nnonexistent\nuser$ sd-container start ubuntu\n[2017-02-20 00:59:38] [INFO‧‧‧] Start docker container \"ubuntu\".\n[2017-02-20 00:59:39] [SUCCESS] Container \"ubuntu\" was successfully started.\nuser$ sd-container status ubuntu\nrunning\nuser$ sd-container login ubuntu\nroot@54034bd5f559:/# exit\nexit\nuser$ sd-container remove ubuntu\n[2017-02-20 01:00:58] [SUCCESS] Docker container \"ubuntu\" was successfully removed.$\n```\n\n```\nuser$ sd-container stop ixno.apache.php7\n[2018-08-13 08:23:00] [SUCCESS] Container \"ixno.apache.php7\" was successfully stopped.\nuser$ sd-container remove ixno.apache.php7\n[2018-08-13 08:25:43] [SUCCESS] Docker container \"ixno.apache.php7\" was successfully removed.\nuser$ sd-image ixno.apache.php7 remove\n[2018-08-13 08:26:17] [SUCCESS] Docker image \"ixno.apache.php7\" was successfully removed.\nuser$ sd-image ixno.apache.php7 build\nuser$ sd-container start ixno.apache.php7\n[2018-08-13 08:30:10] [INFO‧‧‧] Start docker container \"ixno.apache.php7\".\n[2018-08-13 08:30:11] [INFO‧‧‧] activate http ..\n[2018-08-13 08:30:11] [INFO‧‧‧] done\n[2018-08-13 08:30:11] [INFO‧‧‧] start apache ..\n[2018-08-13 08:30:12] [INFO‧‧‧] done\n[2018-08-13 08:30:12] [INFO‧‧‧] start postfix ..\n[2018-08-13 08:30:13] [INFO‧‧‧] done\n[2018-08-13 08:30:13] [SUCCESS] Container \"ixno.apache.php7\" was successfully started.\n```\n\n## A. Authors\n\n* Björn Hempel \u003cbjoern@hempel.li\u003e - _Initial work_ - [https://github.com/bjoern-hempel](https://github.com/bjoern-hempel)\n\n## B. Licence\n\nThis tutorial is licensed under the MIT License - see the [LICENSE.md](/LICENSE.md) file for details\n\n## C. Closing words\n\nHave fun! :)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbjoern-hempel%2Fsimply-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbjoern-hempel%2Fsimply-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbjoern-hempel%2Fsimply-docker/lists"}