{"id":20666350,"url":"https://github.com/devpow112/docker-base-ubuntu","last_synced_at":"2026-04-08T17:01:59.097Z","repository":{"id":37084226,"uuid":"296203013","full_name":"devpow112/docker-base-ubuntu","owner":"devpow112","description":":whale: Ubuntu docker container for use as base for other containers","archived":false,"fork":false,"pushed_at":"2026-03-15T13:32:35.000Z","size":926,"stargazers_count":0,"open_issues_count":9,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-16T07:20:59.053Z","etag":null,"topics":["docker","github-actions","linux","ubuntu"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/devpow112.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-09-17T02:55:29.000Z","updated_at":"2026-03-15T13:22:24.000Z","dependencies_parsed_at":"2023-11-21T16:31:22.835Z","dependency_job_id":"1258c52f-90b6-4f4a-8dea-0ea50983d570","html_url":"https://github.com/devpow112/docker-base-ubuntu","commit_stats":null,"previous_names":[],"tags_count":388,"template":false,"template_full_name":null,"purl":"pkg:github/devpow112/docker-base-ubuntu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devpow112%2Fdocker-base-ubuntu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devpow112%2Fdocker-base-ubuntu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devpow112%2Fdocker-base-ubuntu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devpow112%2Fdocker-base-ubuntu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devpow112","download_url":"https://codeload.github.com/devpow112/docker-base-ubuntu/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devpow112%2Fdocker-base-ubuntu/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31292631,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"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":["docker","github-actions","linux","ubuntu"],"created_at":"2024-11-16T19:37:02.584Z","updated_at":"2026-04-01T22:04:06.896Z","avatar_url":"https://github.com/devpow112.png","language":"Dockerfile","readme":"# Ubuntu (Docker Base Container)\n\n[![License][License]](LICENSE)\n[![Release][Release Badge]][Release Workflow]\n\n[Ubuntu] container for use as base for other containers.\n\n## Building\n\n```console\ndocker build \\\n  --build-arg \"TARGETPLATFORM=...\" \\\n  --build-arg \"LANGUAGE=...\" \\\n  --build-arg \"ENCODING=...\" \\\n  --build-arg \"S6_OVERLAY_VERSION=...\" \\\n  -t base-ubuntu .\n```\n\n### Arguments\n\n- `TARGETPLATFORM` - Set by [Docker Buildx] automatically. Currently supported\n  platforms are `amd64`, `arm/v7`, `arm64`, `ppc64le` `riscv64`, and `s390x`.\n  This should be set automatically even if building locally using standard\n  [Docker CLI].\n- `LANGUAGE` - The language code that is set globally for the system. Defaults\n  to `en_US`. See [locale] for more details.\n- `ENCODING` - Character encoding that is set globally for the system. Defaults\n  to `UTF-8`. See [locale] for more details.\n- `S6_OVERLAY_VERSION` - Version of the [s6 overlay] that is installed. This is\n  automatically updated to the latest release and should only really need to be\n  set manually if trying out a new version locally when building. Only versions\n  **3** and higher are supported.\n\n## Usage\n\nThis container is intended to be used as a base for other containers. It will\nwork as an interactive environment but doesn't provide much more then the\nstandard [Ubuntu][Ubuntu Container] container.\n\n### Base Container\n\nThis is the intended usage.\n\n```dockerfile\nFROM ghcr.io/devpow112/base-ubuntu:latest\n\n...\n```\n\n### Interactive\n\nNot recommended but will work if you need a quick Ubuntu environment to do\ntesting with.\n\n```console\ndocker run --it --rm \\\n  --entrypoint /bin/bash \\\n  ghcr.io/devpow112/base-ubuntu:latest\n```\n\n\u003c!-- links --\u003e\n[License]: https://img.shields.io/github/license/devpow112/docker-base-ubuntu?label=License\n[Release Badge]: https://github.com/devpow112/docker-base-ubuntu/actions/workflows/release.yml/badge.svg?branch=main\n[Release Workflow]: https://github.com/devpow112/docker-base-ubuntu/actions/workflows/release.yml?query=branch%3Amain\n[Ubuntu]: https://ubuntu.com\n[Docker Buildx]: https://docs.docker.com/buildx/working-with-buildx\n[Docker CLI]: https://docs.docker.com/engine/reference/commandline/build\n[locale]: https://manpages.ubuntu.com/manpages/noble/man1/locale.1.html\n[s6 overlay]: https://github.com/just-containers/s6-overlay\n[Ubuntu Container]: https://hub.docker.com/_/ubuntu\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevpow112%2Fdocker-base-ubuntu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevpow112%2Fdocker-base-ubuntu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevpow112%2Fdocker-base-ubuntu/lists"}