{"id":15292874,"url":"https://github.com/luhmirin-s/dockerastoldbymobiledeveloper","last_synced_at":"2026-05-08T03:47:31.815Z","repository":{"id":148125600,"uuid":"198776672","full_name":"luhmirin-s/DockerAsToldByMobileDeveloper","owner":"luhmirin-s","description":"Presentation/workshop material for basic intro to docker","archived":false,"fork":false,"pushed_at":"2019-07-25T07:10:01.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2023-03-27T14:32:52.011Z","etag":null,"topics":["docker","docker-compose","workshop-materials"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/luhmirin-s.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":"2019-07-25T07:04:30.000Z","updated_at":"2024-06-19T10:17:00.846Z","dependencies_parsed_at":null,"dependency_job_id":"cc99ce8c-80f8-44fa-8d5d-8cfec0629fb1","html_url":"https://github.com/luhmirin-s/DockerAsToldByMobileDeveloper","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luhmirin-s%2FDockerAsToldByMobileDeveloper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luhmirin-s%2FDockerAsToldByMobileDeveloper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luhmirin-s%2FDockerAsToldByMobileDeveloper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luhmirin-s%2FDockerAsToldByMobileDeveloper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luhmirin-s","download_url":"https://codeload.github.com/luhmirin-s/DockerAsToldByMobileDeveloper/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245269027,"owners_count":20587707,"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":["docker","docker-compose","workshop-materials"],"created_at":"2024-09-30T16:29:42.916Z","updated_at":"2025-10-16T12:11:50.525Z","avatar_url":"https://github.com/luhmirin-s.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker tutorial as told by mobile developer\n\nPresentation slides are in [here](https://docs.google.com/presentation/d/1wonO_vH1twLFoPrX37EBLPrFgsn0T73by6f-nSziCPs/edit?usp=sharing), but most of actual materials to follow along is in README files in sample folders:\n\n## Table of contents\n\n* [Installation](#quick-start-guide)\n* [Quick start guide](#quick-start-guide)\n* [Basic Dockerfile sample](sample1/README.md)\n* [More realistic Dockerfile sample](sample2/README.md)\n* [docker-compose sample](sample3/README.md)\n* [Useful links](#useful-links)\n\n## Instalation instructions\n\n* For MacOS\n  * [Drag-n-drop version](https://docs.docker.com/v17.12/docker-for-mac/install/)\n  * [Brew](https://pilsniak.com/how-to-install-docker-on-mac-os-using-brew/)\n\n* [For Linux](https://docs.docker.com/v17.12/install/linux/docker-ce/ubuntu/)\n\n* Also consider:\n  * [Dockerhub account](https://hub.docker.com/)\n  * [Kinematic](https://kitematic.com/docs/)\n  * [Lazydocker](https://github.com/jesseduffield/lazydocker)\n\n## Quick start guide\n\n* Go to dockerhub and find elasticsearch base image\n\n* Pull base image (similar to git)\n\n``` bash\ndocker pull elasticsearch:7.2.0\n```\n\n* Execute command from “Run Elasticsearch” section\n\n``` bash\ndocker run -d --name elastic -p 9200:9200 -p 9300:9300 -e \"discovery.type=single-node\" elasticsearch:7.2.0\n```\n\n* Check container state\n\n``` bash\ndocker ps\n```\n\n* Check if it works at `http://localhost:9200/`\n\n* Stop container\n\n``` bash\ndocker stop elastic\n```\n\n* Check container state again\n\n``` bash\ndocker ps\ndocker ps -a\n```\n\n* Restart container\n\n``` bash\ndocker start elastic\ndocker ps\n```\n\n* Delete container\n\n``` bash\ndocker stop elastic\ndocker rm elastic\n```\n\n* Check container state again\n\n``` bash\ndocker ps\ndocker ps -a\n```\n\n## Useful links\n\n* https://en.wikipedia.org/wiki/Docker_(software)\n* https://www.quora.com/What-is-Docker-Please-explain-it-in-simple-terms\n* https://www.callicoder.com/docker-golang-image-container-example/\n* https://docs.docker.com/v17.12/install/\n* https://docs.docker.com/engine/reference/builder/\n* https://docs.docker.com/develop/develop-images/dockerfile_best-practices/\n* https://docs.docker.com/storage/volumes/\n* https://docs.docker.com/compose/\n* https://hub.docker.com/_/elasticsearch\n* https://hub.docker.com/_/golang\n* https://hub.docker.com/r/paciolanadmin/golang-alpine\n* https://hub.docker.com/_/redis \n* https://stackify.com/elasticsearch-tutorial/\n* https://www.restapiexample.com/golang-tutorial/simple-example-uses-redis-golang/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluhmirin-s%2Fdockerastoldbymobiledeveloper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluhmirin-s%2Fdockerastoldbymobiledeveloper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluhmirin-s%2Fdockerastoldbymobiledeveloper/lists"}