{"id":16551261,"url":"https://github.com/michaelcurrin/docker-quickstarts","last_synced_at":"2026-03-18T20:25:16.857Z","repository":{"id":93178122,"uuid":"266368624","full_name":"MichaelCurrin/docker-quickstarts","owner":"MichaelCurrin","description":"Instructions and sample projects to get started with Docker containers ","archived":false,"fork":false,"pushed_at":"2024-04-19T02:37:45.000Z","size":96,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-04T10:54:03.193Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"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/MichaelCurrin.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}},"created_at":"2020-05-23T15:48:55.000Z","updated_at":"2025-07-06T14:17:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"f8477250-7268-498b-b21c-9ac8bc6abfc9","html_url":"https://github.com/MichaelCurrin/docker-quickstarts","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/MichaelCurrin/docker-quickstarts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCurrin%2Fdocker-quickstarts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCurrin%2Fdocker-quickstarts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCurrin%2Fdocker-quickstarts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCurrin%2Fdocker-quickstarts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MichaelCurrin","download_url":"https://codeload.github.com/MichaelCurrin/docker-quickstarts/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelCurrin%2Fdocker-quickstarts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30149973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T16:58:46.102Z","status":"ssl_error","status_checked_at":"2026-03-05T16:58:45.706Z","response_time":93,"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":[],"created_at":"2024-10-11T19:36:46.382Z","updated_at":"2026-03-05T21:08:36.330Z","avatar_url":"https://github.com/MichaelCurrin.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Quickstarts 📦📦📦🐳\n\u003e Instructions and sample projects to get started with Docker containers\n\n[![GitHub tag](https://img.shields.io/github/tag/MichaelCurrin/docker-quickstarts?include_prereleases=\u0026sort=semver)](https://github.com/MichaelCurrin/docker-quickstarts/releases/)\n[![License](https://img.shields.io/badge/License-MIT-blue)](#license)\n\n[![Made with - Docker](https://img.shields.io/badge/Made_with-Docker-blue?logo=docker\u0026logoColor=white)](https://www.docker.com/)\n\n\n## Intro\n\nThis project assumes some knowledge of Docker already. It provides some commands to manage containers in a beginner-friendly way.\n\nSome basic projects are provided so you can get up and running with those without piecing together a Dockerfile or shell commands yourself. Plus you can use the samples as references when you are working on a real project.\n\nTools and languages in the examples:\n\n- Node\n- Python\n- Go\n- Python + Django + PostgreSQL\n- Nginx\n\nThe examples are built around a minimal setup like:\n\n- `README.md` with instructions and shell commands.\n- `Dockerfile`\n- A language-specific script and config.\n\nIn larger applications, it would be a good idea to use a `docker-compose` setup, to make the shell commands you use much shorter.\n\n\n## Resources\n\nSee my [Containers][] section of Dev Resources to learn more about Docker, Docker CLI, Dockerfile, Docker Compose, and more.\n\n[Containers]: https://michaelcurrin.github.io/dev-resources/resources/containers/\n\nThis quickstart project is based on this [YouTube tutorial](https://www.youtube.com/watch?v=eGz9DS-aIeY) by _NetworkChuck_. That covers the reason containers exist and covers how to create and manage containers in a beginner-friendly way. He covers how to run locally and how to deploy your container to a cloud environment such as Linode, using a $20 credit.\n\nSee also [Awesome Compose](https://github.com/docker/awesome-compose) repo which is similar to this project. It contains examples of Docker apps made with Rust, Go, React, Vue etc. All using `Dockerfile` and `docker-compose.yml`.\n\n\n## How to use this project\n\nIf you are confident with Docker or have gone through the Dockerfile notes linked above, then follow this section to the project locally and run some examples from the shell or from the examples directory.\n\n### Installation\n\n#### Install system dependencies\n\nSee [Docker Install](https://michaelcurrin.github.io/dev-cheatsheets/cheatsheets/containers/docker/install.html) guide.\n\n#### Clone\n\nClone the repo and navigate to it:\n\n```sh\n$ git clone git@github.com:MichaelCurrin/docker-quickstarts.git\n$ cd docker-quickstarts\n```\n\n### Usage\n\n#### Project examples\n\nSee the [example](/examples/) directory.\n\nFollow instructions for each example that you are interested in.\n\nThe `Dockerfile` in each is important as it defines and base image and any configuration suitable for the app or chosen programming language.\n\n#### Generic CLI examples\n\nFor basics on using Docker CLI, see [Docker shell basics][] cheatsheet.\n\nNo `Dockerfile` files or app directories are needed there. So you can run those commands directly and without having this repo cloned.\n\nFollow the steps there to download images from Docker Hub and then create containers from them.\n\ne.g.\n\n```sh\n$ docker pull centos\n$ docker run centos\n```\n\n[Docker shell basics]: https://michaelcurrin.github.io/dev-cheatsheets/cheatsheets/containers/docker/intro/shell-only-basics.html\n\n\n## License\n\nReleased under [MIT](/LICENSE) by [@MichaelCurrin](https://github.com/MichaelCurrin).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelcurrin%2Fdocker-quickstarts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaelcurrin%2Fdocker-quickstarts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelcurrin%2Fdocker-quickstarts/lists"}