{"id":23477688,"url":"https://github.com/fnbubbles420-org/hello-web","last_synced_at":"2025-04-13T14:16:48.278Z","repository":{"id":260920284,"uuid":"879846540","full_name":"FNBUBBLES420-ORG/hello-web","owner":"FNBUBBLES420-ORG","description":"This guide provides detailed instructions for setting up and running the hello-fnbubbles420 Docker container.","archived":false,"fork":false,"pushed_at":"2025-01-07T10:06:48.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-13T14:16:42.982Z","etag":null,"topics":["accessibility-matters","charity","disableddevelopers","disabledgamers","disabledstreamers","disabledveterans","docker","dockerfile","educational-materials","empowering","fnbubbles420org","nonprofit","organization"],"latest_commit_sha":null,"homepage":"https://www.fnbubbles420.org/ourmission","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FNBUBBLES420-ORG.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["bubblesthedev","fnbubbles420org"],"custom":["https://fnbubbles420.org/volunteer","https://discord.gg/WvqTu92aMs"]}},"created_at":"2024-10-28T16:42:45.000Z","updated_at":"2025-01-07T10:06:52.000Z","dependencies_parsed_at":"2024-12-24T18:41:30.347Z","dependency_job_id":null,"html_url":"https://github.com/FNBUBBLES420-ORG/hello-web","commit_stats":null,"previous_names":["fnbubbles420-org/hello-web"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FNBUBBLES420-ORG%2Fhello-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FNBUBBLES420-ORG%2Fhello-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FNBUBBLES420-ORG%2Fhello-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FNBUBBLES420-ORG%2Fhello-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FNBUBBLES420-ORG","download_url":"https://codeload.github.com/FNBUBBLES420-ORG/hello-web/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248724625,"owners_count":21151561,"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":["accessibility-matters","charity","disableddevelopers","disabledgamers","disabledstreamers","disabledveterans","docker","dockerfile","educational-materials","empowering","fnbubbles420org","nonprofit","organization"],"created_at":"2024-12-24T18:28:57.350Z","updated_at":"2025-04-13T14:16:48.253Z","avatar_url":"https://github.com/FNBUBBLES420-ORG.png","language":"Dockerfile","funding_links":["https://github.com/sponsors/bubblesthedev","https://github.com/sponsors/fnbubbles420org","https://fnbubbles420.org/volunteer","https://discord.gg/WvqTu92aMs"],"categories":[],"sub_categories":[],"readme":"# Docker Container Setup for hello-fnbubbles420\r\n\r\nThis guide provides detailed instructions for setting up and running the `hello-fnbubbles420` Docker container.\r\n\r\n## Need Help?\r\n\r\nJoin our Discord community for support:\r\n[Join Our Server](https://discord.fnbubbles420.org/invite)\r\n\r\n## Prerequisites\r\n\r\nEnsure Docker is installed on your machine. Download and install Docker for your specific platform:\r\n- [Docker for Windows (AMD64)](https://desktop.docker.com/win/main/amd64/Docker%20Desktop%20Installer.exe)\r\n- [Docker for Windows (ARM64)](https://desktop.docker.com/win/main/arm64/Docker%20Desktop%20Installer.exe)\r\n- [Docker for Mac (Intel Chip)](https://desktop.docker.com/mac/main/amd64/Docker.dmg)\r\n- [Docker for Mac (Apple Silicon)](https://desktop.docker.com/mac/main/arm64/Docker.dmg)\r\n- [Docker for Linux](https://docs.docker.com/desktop/linux/install/)\r\n\r\n## Setup Instructions\r\n\r\n### Step 1: Verify Docker Image\r\n\r\nEnsure the Docker image `hello-fnbubbles420` is available on your local system by running:\r\n\r\n```\r\ndocker images\r\n```\r\n\r\n- Look for `hello-fnbubbles420` in the list and note the exact image name and tag.\r\n\r\n### Step 2: Run the Docker Container\r\n\r\nUse the exact name and tag from your Docker images list to run the container. If there is no tag listed, you can use the image name alone:\r\n\r\n```\r\ndocker run -p 80:80 hello-fnbubbles420\r\n```\r\n\r\n- If the image tag is something like `latest`, adjust the command accordingly:\r\n\r\n```\r\ndocker run -p 80:80 hello-fnbubbles420:latest\r\n```\r\n\r\n### Step 3: Access the Application\r\n\r\nAfter the container starts, you can access the application by opening a web browser and navigating to ``http://localhost`.\r\n\r\n## Additional Docker Commands\r\n\r\nTo manage your Docker containers and images, here are some useful commands:\r\n\r\n### Build the Docker Image\r\n\r\nIf you have a Dockerfile:\r\n\r\n```\r\ndocker build -t hello-fnbubbles420 .\r\n```\r\n\r\n### List Running Containers\r\n\r\n```\r\ndocker ps -a\r\n```\r\n\r\n### Stop a Running Container\r\n\r\n```\r\ndocker stop [container_id_or_name]\r\n```\r\n\r\n### Remove a Container\r\n\r\n```\r\ndocker rm [container_id_or_name]\r\n```\r\n\r\n### Remove a Docker Image\r\n\r\n```\r\ndocker rmi hello-fnbubbles420\r\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffnbubbles420-org%2Fhello-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffnbubbles420-org%2Fhello-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffnbubbles420-org%2Fhello-web/lists"}