{"id":20537445,"url":"https://github.com/socheatsok78/docker-nginx-s6","last_synced_at":"2025-04-14T07:30:22.985Z","repository":{"id":50480615,"uuid":"416977224","full_name":"socheatsok78/docker-nginx-s6","owner":"socheatsok78","description":"Nginx with s6-overlay","archived":false,"fork":false,"pushed_at":"2022-08-18T16:21:21.000Z","size":127,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T05:53:28.838Z","etag":null,"topics":["alpine","docker","docker-image","nginx","nginx-s6","s6-overlay"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/socheatsok78/nginx-s6","language":"Shell","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/socheatsok78.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}},"created_at":"2021-10-14T03:34:07.000Z","updated_at":"2023-03-05T02:18:26.000Z","dependencies_parsed_at":"2022-08-24T13:38:01.849Z","dependency_job_id":null,"html_url":"https://github.com/socheatsok78/docker-nginx-s6","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fdocker-nginx-s6","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fdocker-nginx-s6/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fdocker-nginx-s6/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fdocker-nginx-s6/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/socheatsok78","download_url":"https://codeload.github.com/socheatsok78/docker-nginx-s6/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248839227,"owners_count":21169779,"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":["alpine","docker","docker-image","nginx","nginx-s6","s6-overlay"],"created_at":"2024-11-16T00:40:39.940Z","updated_at":"2025-04-14T07:30:22.929Z","avatar_url":"https://github.com/socheatsok78.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"### :warning::warning: Warning :warning::warning:\n#### You can build your own `nginx` with `s6-overlay` using this module [s6-overlay-nginx-module](https://github.com/socheatsok78/s6-overlay-nginx-module).  I recommended that you build your own image instead of using this custom image. But I will continue to support this custom release for quite some time until it is no longer being used.\n\n# About\n\nNginx with [s6-overlay](https://github.com/just-containers/s6-overlay).\n\n[![docker-pull](https://img.shields.io/docker/pulls/socheatsok78/nginx-s6)](https://hub.docker.com/r/socheatsok78/nginx-s6)\n\n---\n\n### Quick reference\n\n- Maintained by: [socheatsok78](https://github.com/socheatsok78/docker-nginx-s6)\n- Official repo: https://github.com/nginxinc/docker-nginx\n- Official Docker Hub: https://hub.docker.com/_/nginx\n\n## Features\n\n- Multi-platform image\n- Use official nginx container configurations\n\n## Image\n\n| Registry                                                                                           | Image                           |\n| -------------------------------------------------------------------------------------------------- | ------------------------------- |\n| [Docker Hub](https://hub.docker.com/r/socheatsok78/nginx-s6)                                       | docker.io/socheatsok78/nginx-s6 |\n| [GitHub Package Registry](https://github.com/socheatsok78/docker-nginx-s6/pkgs/container/nginx-s6) | ghcr.io/socheatsok78/nginx-s6   |\n\nFollowing platforms for this image are available:\n\n```\n$ docker run --rm mplatform/mquery socheatsok78/nginx-s6:latest\nImage: socheatsok78/nginx-s6:latest (digest: sha256:e4bff73f127963083cab672d37bdc40b6bbb64234c090289ad2ba0ff72a142fb)\n * Manifest List: Yes (Image type: application/vnd.docker.distribution.manifest.list.v2+json)\n * Supported platforms:\n   - linux/amd64\n   - linux/arm64\n   - linux/arm/v7\n   - linux/arm/v6\n```\n\n### Supported tags\n\n- `latest`, `mainline`, `alpine`\n- `stable`, `stable-alpine`\n\n**v1.21**\n- `1.21`, `1.21.3`, `1.21.4`, `1.21.5`, `1.21.6`\n- `1.21-alpine`, `1.21.3-alpine`, `1.21.4-alpine`, `1.21.5-alpine`, `1.21.6-alpine`\n\n**v1.22**\n- `1.22`, `1.22.0`\n- `1.22-alpine`, `1.22.0-alpine`\n\n**v1.23**\n- `1.23`, `1.23.0`, `1.23.1`\n- `1.23-alpine`, `1.23.0-alpine`, `1.23.1-alpine`\n\n## How to use this image\n\n```sh\n$ docker run --name some-nginx -v /some/content:/usr/share/nginx/html:ro -d socheatsok78/nginx-s6\n```\n\nAlternatively, a simple Dockerfile can be used to generate a new image that includes the necessary content (which is a much cleaner solution than the bind mount above):\n\n```Dockerfile\nFROM socheatsok78/nginx-s6\nCOPY static-html-directory /usr/share/nginx/html\n```\n\nPlace this file in the same directory as your directory of content (\"static-html-directory\"), run `docker build -t some-content-nginx .`, then start your container:\n\n```sh\n$ docker run --name some-nginx -d some-content-nginx\n```\n\n## Documentations\n\nThe usage guide are the same as the official [nginx](https://hub.docker.com/_/nginx) docker image.\n\nFor s6-overlay usage guide see: https://github.com/just-containers/s6-overlay/#readme\n\n## License\n\nLicensed under the [MIT](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsocheatsok78%2Fdocker-nginx-s6","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsocheatsok78%2Fdocker-nginx-s6","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsocheatsok78%2Fdocker-nginx-s6/lists"}