{"id":39497828,"url":"https://github.com/clarin-eric/virtual_alpine-nginx","last_synced_at":"2026-01-18T05:43:55.148Z","repository":{"id":144999584,"uuid":"46992030","full_name":"clarin-eric/virtual_alpine-nginx","owner":"clarin-eric","description":"Virtualized static content web server.","archived":false,"fork":false,"pushed_at":"2015-12-04T16:40:54.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-09-10T03:14:44.624Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/clarin-eric.png","metadata":{"files":{"readme":"README.adoc","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}},"created_at":"2015-11-27T17:23:27.000Z","updated_at":"2015-11-27T17:33:03.000Z","dependencies_parsed_at":"2023-04-15T00:40:17.662Z","dependency_job_id":null,"html_url":"https://github.com/clarin-eric/virtual_alpine-nginx","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/clarin-eric/virtual_alpine-nginx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clarin-eric%2Fvirtual_alpine-nginx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clarin-eric%2Fvirtual_alpine-nginx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clarin-eric%2Fvirtual_alpine-nginx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clarin-eric%2Fvirtual_alpine-nginx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clarin-eric","download_url":"https://codeload.github.com/clarin-eric/virtual_alpine-nginx/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clarin-eric%2Fvirtual_alpine-nginx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28531368,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2026-01-18T05:43:55.079Z","updated_at":"2026-01-18T05:43:55.135Z","avatar_url":"https://github.com/clarin-eric.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"== Requirements\n\n* https://packer.io[Packer].\n* https://www.docker.com/[Docker] \u003e= 1.9.0.\n\n== To build\n\n* Make sure that you have the relevant Docker volumes ready. These will be provisioned during build. If not, create them:\n+\n[source,Sh]\n----\ndocker volume create --name 'etc-CLARIN_TLS--infra' \u0026\u0026\ndocker volume create --name 'srv-www-infra.clarin.eu--infra'\n----\n+\n* Follow this https://github.com/sanmai-NL/guide_on_submodules[brief guide on submodules] to learn how to manage dependency submodules, if you do not know it already. Complete https://github.com/sanmai-NL/recursive_packer_build/blob/master/Project_dependencies_as_Git_submodules.adoc#getting-started-with-a-git-repository-that-has-submodules[the recursive clone] or submodule initialization of this repository.\n* Complete a https://github.com/sanmai-NL/recursive_packer_build#to-use[recursive Packer build] by issuing `build_all` from a POSIX shell with the root of your clone of this repository as working directory.\n\n== To configure\n\n* After the previously described build process has completed successfully, `cd` to the root directory of your local copy of this repository.\n* Determine which version of the image you want to use. To set the shell variable BUILD_REVISION to the tag specified to the previous build:\n+\n[source,Sh]\n----\nBUILD_REVISION=\"$(git rev-parse --short @)\"\n----\n+\n* Create the application container:\n+\n[source,Sh]\n----\ndocker create \\\n    --name=\"alpine-nginx--infra--${BUILD_REVISION}\" \\\n    --publish='127.0.0.1:443:443' \\\n    --publish='127.0.0.1:80:80' \\\n    --entrypoint='/usr/sbin/nginx' \\\n    --hostname='infra.clarin.eu' \\\n    --volume='etc-CLARIN_TLS--infra:/etc/CLARIN_TLS/' \\\n    --volume='srv-www-infra.clarin.eu--infra:/srv/www/infra.clarin.eu/' \\\n    \"docker.clarin.eu/alpine-nginx:${BUILD_REVISION}\"\n----\n\n== To run\n\n[source,Sh]\n----\ndocker start \"alpine-nginx--infra--${BUILD_REVISION}\" \u0026\u0026\ndocker exec -ti \"alpine-nginx--infra--${BUILD_REVISION}\" /bin/sh\n----\n\n=== To destroy\n\n[source,Sh]\n----\ndocker stop \"alpine-nginx--infra--${BUILD_REVISION}\" \u0026\u0026\ndocker rm \"alpine-nginx--infra--${BUILD_REVISION}\" \u0026\u0026\n## WARNING: The following will delete all data in these volumes!\ndocker volume rm 'etc-CLARIN_TLS--infra' 'srv-www-infra.clarin.eu--infra'\n----\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclarin-eric%2Fvirtual_alpine-nginx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclarin-eric%2Fvirtual_alpine-nginx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclarin-eric%2Fvirtual_alpine-nginx/lists"}