{"id":28119523,"url":"https://github.com/alexveebee/dockerfiles","last_synced_at":"2026-01-25T03:01:17.251Z","repository":{"id":290574969,"uuid":"974899718","full_name":"AlexVeeBee/dockerfiles","owner":"AlexVeeBee","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-11T17:46:56.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-11T18:34:34.294Z","etag":null,"topics":["dockerfile","templates"],"latest_commit_sha":null,"homepage":"","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/AlexVeeBee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-04-29T13:26:19.000Z","updated_at":"2025-05-11T17:46:59.000Z","dependencies_parsed_at":"2025-04-29T15:02:36.080Z","dependency_job_id":null,"html_url":"https://github.com/AlexVeeBee/dockerfiles","commit_stats":null,"previous_names":["alexveebee/dockerfiles"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AlexVeeBee/dockerfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexVeeBee%2Fdockerfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexVeeBee%2Fdockerfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexVeeBee%2Fdockerfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexVeeBee%2Fdockerfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlexVeeBee","download_url":"https://codeload.github.com/AlexVeeBee/dockerfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexVeeBee%2Fdockerfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28742973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T02:46:29.005Z","status":"ssl_error","status_checked_at":"2026-01-25T02:44:29.968Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["dockerfile","templates"],"created_at":"2025-05-14T07:18:27.989Z","updated_at":"2026-01-25T03:01:17.244Z","avatar_url":"https://github.com/AlexVeeBee.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dockerfile templates\n\n## Basic dockerfiles to complex\n\n## Building docker files\n\n```bash\ndocker build -t image_name:tag .\n```\n\nTo run:\n```bash\ndocker run [options] image_name:tag\n\n# Common options:\n# -d, --detach        Run container in background\n# -p, --publish       Publish container's port to the host\n# -v, --volume        Bind mount a volume\n# --name              Assign a name to the container\n# --rm                Remove container when it exits\n```\n\n## Using Docker Compose\n\nDocker Compose allows you to define and run multi-container Docker applications.\n\nExample `docker-compose.yml`:\n\n```yaml\nservices:\n    web:\n        build:\n            context: .\n            dockerfile: dockerfile\n        ports:\n            - \"8000:8000\"\n        restart: unless-stopped\n    db:\n        image: postgres\n        environment:\n            POSTGRES_PASSWORD: example\n        restart: unless-stopped\n```\n\nTo run:\n```bash\ndocker compose up -d\n```\n\nTo build and run:\n```bash\ndocker compose up -d --build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexveebee%2Fdockerfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexveebee%2Fdockerfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexveebee%2Fdockerfiles/lists"}