{"id":15289020,"url":"https://github.com/thefirstspine/boiler2","last_synced_at":"2025-10-07T03:30:52.998Z","repository":{"id":103731899,"uuid":"298525554","full_name":"thefirstspine/boiler2","owner":"thefirstspine","description":"Boiler is a Docker orchestration software built on top of nginx \u0026 docker.","archived":true,"fork":false,"pushed_at":"2023-05-04T00:27:09.000Z","size":52,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-23T01:46:50.645Z","etag":null,"topics":["docker","nginx"],"latest_commit_sha":null,"homepage":"https://thefirstspine.github.io/","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thefirstspine.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-25T09:17:58.000Z","updated_at":"2023-09-18T13:36:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"9a6a79cb-d31d-47c8-b9b0-0d4771ea653f","html_url":"https://github.com/thefirstspine/boiler2","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/thefirstspine/boiler2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thefirstspine%2Fboiler2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thefirstspine%2Fboiler2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thefirstspine%2Fboiler2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thefirstspine%2Fboiler2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thefirstspine","download_url":"https://codeload.github.com/thefirstspine/boiler2/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thefirstspine%2Fboiler2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278715508,"owners_count":26033296,"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","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"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":["docker","nginx"],"created_at":"2024-09-30T15:55:37.806Z","updated_at":"2025-10-07T03:30:52.666Z","avatar_url":"https://github.com/thefirstspine.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"```\n██████╗      ██████╗     ██╗    ██╗         ███████╗    ██████╗\n██╔══██╗    ██╔═══██╗    ██║    ██║         ██╔════╝    ██╔══██╗\n██████╔╝    ██║   ██║    ██║    ██║         █████╗      ██████╔╝\n██╔══██╗    ██║   ██║    ██║    ██║         ██╔══╝      ██╔══██╗\n██████╔╝    ╚██████╔╝    ██║    ███████╗    ███████╗    ██║  ██║\n╚═════╝      ╚═════╝     ╚═╝    ╚══════╝    ╚══════╝    ╚═╝  ╚═╝\n```\n\n## About\n\nBoiler is a Docker orchestration software built on top of nginx \u0026 docker.\n\n## Prerequisites\n\nYou need a server with git, docker, nginx and certbot installed. To install these dependencies, you can run the ./setup.sh script.\n\nAlso, your server needs to access your repositories in order to boil some apps.\n\n## Deployment\n\n```\n./boiler deploy [project] [options]\n```\n\nHere's the options available:\n- `tag_or_branch`: The tag or the branch to deploy. Default to master.\n- `skip_build`: Skip the docker build. 1 or 0. Defaults to 0.\n- `skip_sign`: Skip the certbot call. 1 or 0. Defaults to 0.\n- `skip_clean`: Skip the clean at the end of the deployment. 1 or 0. Defaults to 0.\n\nExample with Arena\n\n`./boiler deploy arena --tag_or_branch=1.0.0`\n\n## Serving for Github Webhooks\n\n```\n./boiler serve\n```\n\nThis will serve on the port 3000\n\n## Configuring a project\n\nThe configurations are stored inside in JSON located at `boiler.json`. Here’s an explaination of the content of the file:\n\n```\n{\n  \"config\": {\n    \"githubKey\": \"\"\n  },\n  \"common\": {\n    \"env\": [\n      \"{environment key}={value}\"\n    ]\n  },\n  \"projects\": [\n    {\n      \"name\": \"{project name}\",\n      \"domain\": \"{domain}\",\n      \"repository\": \"{repository - HTTPS or SSH}\",\n      \"env\": [\n        \"{environment key}={value}\"\n      ]\n    }\n  ]\n}\n\n```\n\n## Complete example\n\n```\n# Write config\necho '{\n  \"config\": {\n    \"githubKey\": \"\"\n  },\n  \"common\": {\n    \"env\": [\n      \"PORT=8080\",\n    ]\n  },\n  \"projects\": [\n    {\n      \"name\": \"rest\",\n      \"domain\": \"rest.sandbox.thefirstspine.fr\",\n      \"repository\": \"https://github.com/thefirstspine/rest.git\",\n      \"env\": [\n        \"ARENA_URL=https://arena.thefirstspine.fr\",\n        \"WEBSITE_URL=https://www.thefirstspine.fr\"\n      ]\n    }\n  ]\n}' \u003e boiler.json\n# Download from github\nwget https://github.com/thefirstspine/boiler2/releases/download/v-1.0.0/boiler2_v-1.0.0_linux_amd64.tar.gz boiler2_v-1.0.0_linux_amd64.tar.gz\n# Untar release\ntar vxf boiler2_v-1.0.0_linux_amd64.tar.gz\n# Make it executable\nchmod +x boiler2\n# Execute file\n./boiler2 deploy rest\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthefirstspine%2Fboiler2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthefirstspine%2Fboiler2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthefirstspine%2Fboiler2/lists"}