{"id":16295257,"url":"https://github.com/seia-soto/outline-server-multiarch","last_synced_at":"2026-03-05T09:33:07.880Z","repository":{"id":59536896,"uuid":"449948293","full_name":"seia-soto/outline-server-multiarch","owner":"seia-soto","description":"The multi-arch distribution of Jigsaw's Outline-Server project.","archived":false,"fork":false,"pushed_at":"2025-02-26T00:11:05.000Z","size":65,"stargazers_count":39,"open_issues_count":3,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-30T21:09:02.938Z","etag":null,"topics":["aarch32","aarch64","docker","outline-vpn","proxy","shadowbox","shadowsocks"],"latest_commit_sha":null,"homepage":"","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/seia-soto.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,"zenodo":null}},"created_at":"2022-01-20T04:01:43.000Z","updated_at":"2025-05-28T23:48:00.000Z","dependencies_parsed_at":"2024-02-07T01:26:07.922Z","dependency_job_id":"f396b301-ebcc-4341-9175-8d84a1cf6e39","html_url":"https://github.com/seia-soto/outline-server-multiarch","commit_stats":null,"previous_names":[],"tags_count":41,"template":false,"template_full_name":null,"purl":"pkg:github/seia-soto/outline-server-multiarch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seia-soto%2Foutline-server-multiarch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seia-soto%2Foutline-server-multiarch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seia-soto%2Foutline-server-multiarch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seia-soto%2Foutline-server-multiarch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seia-soto","download_url":"https://codeload.github.com/seia-soto/outline-server-multiarch/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seia-soto%2Foutline-server-multiarch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30117718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T08:19:04.902Z","status":"ssl_error","status_checked_at":"2026-03-05T08:17:37.148Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["aarch32","aarch64","docker","outline-vpn","proxy","shadowbox","shadowsocks"],"created_at":"2024-10-10T20:18:13.100Z","updated_at":"2026-03-05T09:33:07.846Z","avatar_url":"https://github.com/seia-soto.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# outline-server-multiarch\n\nThe multi-arch distribution of [Jigsaw's Outline-Server](https://github.com/Jigsaw-Code/outline-server) project for AArch servers.\n\n| Version | Update Interval                              | Target          | Supported OS/Arch                                    |\n|---------|----------------------------------------------|-----------------|------------------------------------------------------|\n| master  | daily                                        | upstream/master | linux/amd64, linux/arm64, linux/arm/v7, linux/arm/v6 |\n| latest  | checked daily, released as upstream tags     | Latest tag      | linux/amd64, linux/arm64, linux/arm/v7, linux/arm/v6 |\n| release | checked daily, not more updated (legacy)     | v1.9 or lower   | linux/amd64, linux/arm64, linux/arm/v7, linux/arm/v6 |\n\n## Usage\n\nTo install outline-server on your server using this docker image, paste following code before install:\n\n```bash\n# master release, updated daily (might fail sometime)\nexport SB_IMAGE=\"ghcr.io/seia-soto/shadowbox:master\"\n\n# stable release, NOT MORE UPDATED (It is for outline-server v1.9 or lower, use `latest` instead)\nexport SB_IMAGE=\"ghcr.io/seia-soto/shadowbox:release\"\n\n# latest release, updated irregularly\nexport SB_IMAGE=\"ghcr.io/seia-soto/shadowbox:latest\"\n\n# run install script\ncurl -sL \"https://raw.githubusercontent.com/Jigsaw-Code/outline-server/master/src/server_manager/install_scripts/install_server.sh\" | sed '/local MACHINE_TYPE/,/fi/{d}' | bash\n```\n\n## Development\n\n### Patching\n\nThere're Makefile in this repository and contains some useful commands for development, but you can continue only with `git diff` command.\n\nUse `make help` to print help script.\n\nStarting with `make clone-upstream apply-patches` would be help.\n\n### Local build\n\n\u003e The build script uses Docker Buildx and you cannot publish the output image directly to the Docker daemon.\n\nTo build image locally, you can use following command with prepared environment:\n\n- For **single-arch** build, you just need to install:\n  - `jq`\n  - `git`\n  - `curl`\n  - `tar`\n  - `npm` from Node.JS (use v12 for `latest` build, otherwise use v16)\n  - Docker with Buildx and BuildKit support\n- For **multi-arch** build, you also need to install:\n  - QEMU emulator for cross-platform build\n\n```bash\n# clone this repo\ngit clone https://github.com/seia-soto/outline-server-multiarch.git\n\n# go to repo\ncd outline-server-multiarch\n\n: '\n# by HoJeong Go\n\nUsage:\n\n    ./build.sh $arch $tag $checkpoint\n\n    -- Arguments:\n\n    $arch {string} The arch to build, using docker platform style\n    $tag {string} The docker tag to use while building the image\n    $checkpoint {string} The git branch or tag to checkout on Jigsaw-Code/Outline-Server\n\n    -- Environments:\n\n    $AB_LEAVE_BASE_DIRECTORY {any} If it is not empty string, script will not clean working directory\n\nAbout:\n\n    This script builds Outline-Server docker buildx image\n    with specific arch by downloading compatible third_party\n    automatically.\n'\n\n# set local image name to use\nexport SB_IMAGE=\"shadowbox-local\"\n\nPLATFORM=\"linux/amd64\" # use one of linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6, or all\nCHECKPOINT=\"latest\" # use latest for latest tag or `master`\n\n# build latest, use false for use_legacy_install if you're building master branch\nbash ./build.sh \"${PLATFORM}\" \"${SB_IMAGE}\" \"${CHECKPOINT}\"\n\n# run install script\ncurl -sL \"https://raw.githubusercontent.com/Jigsaw-Code/outline-server/master/src/server_manager/install_scripts/install_server.sh\" | sed '/local MACHINE_TYPE/,/fi/{d}' | bash\n```\n\n### Troubleshooting\n\n#### `Unsupported machine type: ${MACHINE_TYPE}. Please run this script on a x86_64 machine.`\n\nYou can use `sed '/local MACHINE_TYPE/,/fi/{d}'` to remove lines.\n\n```bash\ncurl -sL \"https://raw.githubusercontent.com/Jigsaw-Code/outline-server/master/src/server_manager/install_scripts/install_server.sh\" | sed '/local MACHINE_TYPE/,/fi/{d}' | bash\n```\n\n# LICENSE\n\nThis repository contains, modified and uses the hard work by Outline-Server Authors.\nThe following files are originally from Outline-Server Authors and modified for personal use.\n\n- `extra/scripts/build.action.sh`\n\nAlso, the build script which named `/build.sh` will clone the Outline-Server repository and modify for personal use.\n\nOther files which created by HoJeong Go (a.k.a Seia-Soto) has been licensed with [MIT License](./LICENSE).\n\n```\nMIT License Copyright 2022-2023 HoJeong Go\n\nPermission is hereby granted, free of\ncharge, to any person obtaining a copy of this software and associated\ndocumentation files (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use, copy, modify, merge,\npublish, distribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\nThe above copyright notice and this permission notice\n(including the next paragraph) shall be included in all copies or substantial\nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO\nEVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseia-soto%2Foutline-server-multiarch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseia-soto%2Foutline-server-multiarch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseia-soto%2Foutline-server-multiarch/lists"}